Did you try to put your RSI into a variable? With the block "Modify variable"
Best posts made by Noctis
-
RE: How to Define Single Setting for Multiple Blocks Using the Same Indicator?posted in Questions & Answers
-
RE: How to Define Single Setting for Multiple Blocks Using the Same Indicator?posted in Questions & Answers
Yes better to use a variable because a constant is a value that you would enter manually into the parameters and that is most of the time not changed by the EA or by indicator. Variables are made to change all the time during the EA is running. I am sure you can find many example how to use variable in the forum
Latest posts made by Noctis
-
RE: How to Define Single Setting for Multiple Blocks Using the Same Indicator?posted in Questions & Answers
Yes better to use a variable because a constant is a value that you would enter manually into the parameters and that is most of the time not changed by the EA or by indicator. Variables are made to change all the time during the EA is running. I am sure you can find many example how to use variable in the forum
-
RE: How to Define Single Setting for Multiple Blocks Using the Same Indicator?posted in Questions & Answers
Did you try to put your RSI into a variable? With the block "Modify variable"
-
RE: ATR Stoploss Not Triggeringposted in Questions & Answers
Check your ATR value, it might be very small like 0.002 or even less so multiply it by 1.5 is probably not enough to get near the actual price value. For example in my case : my ATR value was 0.0005 (on one minute time frame) and I wanted to transform it in 15 pips (using a SL in fixed pips) so I multiply it by 30 000. And I used another formula block to do so, but maybe its working in the "adjust" part, I don't know that one...
-
How to check a past event for a period of time?posted in General Discussions
Example: I want to check if there was a MA crossover during the last 50 candles.
Right now I just create 50 blocks conditions for each candle lol...but is there a more efficient way to do it? Like a loop for candle or something...?
Cheers u all!