@jstap
this is my project , i want it to enter a sell order when rsi >70 , and into the next one when the rsi >70 condition is repeated , even if the previous one has not closed . ( but my ea has entered a sell order continuously as long as rsi >70 , i only want it to enter 1 order , until the condition rsi >70 is repeated will enter the next order , even if the previous one has not closed , so I don't use the " no trade " block because this block only opens a new order when the previous one is closed)
https://fxdreema.com/shared/KO6F8On9e
Posts made by ddvjvn.kmb
-
RE: How do I point to one instruction for each condition, and when that is repeated, then move on to the next command?posted in Questions & Answers
-
RE: How do I point to one instruction for each condition, and when that is repeated, then move on to the next command?posted in Questions & Answers
@jstap i have an example like this where rsi >70 Ea will enter a sell order 0.01 lot . but my EA goes into consecutive sell orders when rsi > 70 , so bad . what i want is that the EA only enters one instruction until the condition rsi > 70 is repeated it will enter the second instruction, so it only enters one instruction every time the condition rsi > 70 is repeated. i know a block is " no trade " which means will only enter a new order when the previous one is closed , that is not what i want , i want it to enter even if the previous order is not closed as long as the condition rsi > 70 is met .
-
How do I point to one instruction for each condition, and when that is repeated, then move on to the next command?posted in Questions & Answers
How do I point to one instruction for each condition, and when that is repeated, then move on to the next command?
-
help me use loopposted in Questions & Answers
I have 2 groups. there is a rule that : group 1 will be the condition to activate group 2 . When group 1 meets the condition, group 2 will enter an order. if group 1 and group 2 reach average profit, the positions will be closed. If there is a loss, the above rule will be repeated. I tried to create such an EA but when group 1 meets the condition, group 2 enters the trade continuously. what i want is group 2 to point to only one command , until group 1 repeats then group 2 to enter the next command . What should I do