Question about buffers for real programmers
-
I'm trying this custom indicator showing trends in four timeframes simultaneously:
0_1590588487514_4 TF Heiken Ashi Arrows.mq4
All buffers are correctly imported and work fine.

However, I need two additional buffers that are not included with the revious ones. They are up/dpwn arrow elegible as input parameters:

Could a real programmer please tell me how can I 'translate' those input parameters into buffers that fxDReema can read? They are the information i'm looking for.
-
problem is, these arrows are not in buffers (they are just objects) ...
you can check with an EA condition if a new object appears on the previous candle (work with objects, not buffers) ...
...
or carefuly check how or when the arrow appears ... it is when all buffers are aligned as green or red - use condition and check all buffers -
I will try that. Thank you very much once more!