- Search Energy EXCH
-
PaulMF replied Mar 14, 2021If what you want is what jmoreno suggests here, then the one attached will do that. I find it more than enough for test the possibilities of your strategy and you don't have to wait for live markets. It is a strategy that can be perfectly evaluated ...
Looking for EA
-
PaulMF replied Mar 14, 2021Third and fourth conditions don't make too much sense as they appeared in your code. Can you describe what you are after in third and fourth conditions?
MQL4 code: iHighest
-
PaulMF replied Mar 14, 2021I forgot to add candle size in points. Use the one attached instead. #property strict input int Magic = 123456; input double Size = 250; input double Lots = 0.01; input double TP = 100; input double SL = 100; input int Slippage = 3; datetime Last = ...
Looking for EA
-
PaulMF replied Mar 13, 2021Sure. It works in any time frame. Added in version attached: - Magic - TP and SL in points (better than pips for cross-symbol compatibility) #property strict input int Magic = 123456; input double Size = 0.0025; input double Lots = 0.01; input ...
Looking for EA
-
PaulMF replied Mar 13, 2021Hi kasrafx I attach an EA that will do that. #property strict input double Size = 0.0025; input double Lots = 0.01; input double TP = 0.0010; input double SL = 0.0010; input int Slippage = 3; datetime Last = 0; void OnInit(){ Last = Time[0]; } void ...
Looking for EA
-
PaulMF replied Mar 12, 2021Hi Simple Monday Tuesday community, I have just read the first post of this thread and not sure if what this first post says is what 4ecstasy wanted to say. It says that: And based on what I read in the lines below that text, the system relies on ...
Simple Monday-Tuesday System (attached calculator)