Hey you guys.
I have a trading system that i think produces decent results, but i would like to make the signals a bit more automatic.
Therefore i was wondering if the following was possible.
I want to make my "trigger-bar" a different color, and maybe with the wording "GO", when the following criteria is met:
1) My EMAs 10, 20, and 50 is stacked in that particular order. For long i want 10 on top, then 20 and then 50, and of course for short signals i want the other way around.
2) The trigger bar opened on one side of the EMA10 (above when short),
3) The trigger bar then closed on the opposite side of EMA10 (Under when short)
Is this possible? I have attached a screenshot of an example bar when the criteria is met. Ema10 is red, ema20 is yellow, and ema50 is green
Try this: https://www.linnsoft.com/charts/ema-triggerbar-es
RTL Syntax for Signal...
MA_SHRT > MA_MED AND MA_MED > MA_LONG AND OP < MA_SHRT AND CL >=MA_SHRT
Short side syntax: MA_SHRT < MA_MED AND MA_MED < MA_LONG AND OP > MA_SHRT AND CL <=MA_SHRT
Hey Chad
What about the red candle at approx 10’o’clock? That should also be a trigger candle?
The original chart was only the long side. I had updated original post to include short side (red dot). Let me know if that looks right.