how to achieve this?
-
currently i have 2 indicators
first one is CMF (kind of like RSI in appearance ) and second indicator is called tick CMF (tick cmf uses icustom to read buffer value from cmf)
the second indicator uses the CMF and compares if CMF is above 0 or below , if its above 0 then tick cmf places a green "check mark" below the candle
and if its below the 0 level then it places a red "check mark" above the candlei wan to achieve the exact same thing using fxdreema with some amendments using my own logic , but the problem i am facing is the issue that fxdreema works on ticks meaning if i try to do this in fxdreema then it will only start to display these check marks from the moment the ea is placed on the chart and there will be no check mark for the candles before that point, is there any way to replicate it in such a way that when ever the ea is attached to the chart it places these marks on the previous 300 candles as well ?
-
Interesting question. I guess (and it's just a guess) that if the logic is independent of the next candle value, it should be possible with a loop. Can you please define the exact logic involved in each candle's calculation?
-
@l-andorrà well i think the logic will be independent of the next candle ,
i havent actually come up with a logic ye but i intend to make few amendments, like adding CCI and RSI in the calculations as wellbut before coming up with the logic , i wanted to know if its possible or not
-
Please share it here if you get it.

-
@l-andorrà well I really don't think I could achieve this on my own

All I know is this could be achieved via loop, just as you said
Other then that I am totally clueless -
Maybe the master of loops, Mr. roar, could help.

-
@l-andorrà you are right

@roar can you please take a look here -
@l-andorrà @Zackry Hi!
Its just trickery with the candle ID. Here's an example that plots the ma crossing points, hope you get the idea:
https://fxdreema.com/shared/YndXsmKM -
@roar thanks Roar, it works.