Forum

//get current phase-time in/on direction of/to selected duration, realized or anticipated pivot preference (depending on the former)

//get current phase-time in/on direction of/to selected duration, realized or anticipated pivot preference (depending on the former)

possible loss of data due to type conversion --WARNING

Hello, please help Please give me some advice on what I should do about this... zcolor = ObjectGet( "prev-LR-Trend" , OBJPROP_COLOR ); if (zcolor== clrDarkBlue ){zBias= 3 ;} else if (zcolor== clrDarkGreen ){zBias= 2 ;} ...so, I'm creating an object ( a OBJ_STDDEVCHANNEL ) over

A General Question about a method of Market Analysis

Greetings, ...so I put together this setup for looking at a number of pairs, somewhat like similarly to https://www.mql5.com/en/code/30169 but more like for each specific currency just looking at strength from a Duration perspective. Basically, it's 2, plus, or minus BL or Br, i.e pair just got

Remembering Your Trade Plan

Hello, dear MQL Forum I am trying to remember my trading plans in the following way: hotkey <ctrl+1> a script that save a template... This is what it does #property show_inputs enum TemplateName{ plan_USDCHF= 1 , //USDCHF plan_USDJPY= 2 , //USDJPY plan_AUDCHF= 3 , //AUDCHF ... plan_SOMEOTHER= 26

An Example of Trading Logic, with a Question

...actually this is a question that's been concerning to me for a while now, are there cases when verifying OrderSelect() (i.e. to resolve the Warning) is actually a bad idea and I'd be better off just leaving OrderSelect (glbOrderTicket,SELECT_BY_TICKET, MODE_TRADES); instead of using if (

Error 130 should sometimes just be ignored, but will my broker enjoy it?

hi, so I implemented this strategy of mine where I draw some sloping fibots starting at the open of the day or week or month, and then track the sloping lines and place pending orders on the two lines that bracket price, both orders in the direction of the slope(bullish/bearish) and I do so through

Levels

enjoy any suggestions, please? there are lots of comments in the code, not really complete sentences and such, just notes about the thought process

A Free Trading System In Development

Hello, Trading is hard. Why trade? To make money. How to trade? Buy low, sell high. This is essentially the gist of it, right? To decide whether I want to Buy or Sell I first need a Bias. I figured I'd take the Open Price as my starting point and set a target on previous highs if my bias is Bullish

Pivot Preference

Greetings. This indicator is called Pivot Preference. It plots (1-(P-S1)/(R1-P)) in a separate window, where P is the central Pivot (HLC/3), S1 is first support((2*P)-PreviousHigh), and R1 is first resistance((2*P)-PreviousLow). This indicator (#PivPrefBias.mq4) has #property

Here's a Trading System Idea

Hello, My Trading System Idea is the following - - look to buy if the Bias is "BUY" and look to sell if the Bias is "SELL", pretty obvious, in general. How to go about executing the buy/sell orders is a different story because the current story is about figuring out this aforementioned Bias. How do