|
Quote: |
|
 |
|
|
This is not working real time
I am still getting (green or up candle) and red negative ticks (more down ticks)
I am trying to get different color when there is Divergence between price action and tick action
Thanks in advance
sean |
|
|
|
|
Try this edit for starters
CHANGE:
if (c > c[0] and color = DownColor) or
(c < c[0] and color = UpColor) then
color = DivColor;
TO
if (c > c[1] and color = DownColor) or
(c < c[1] and color = UpColor) then
color = DivColor;
Let me know if 'it still don't work'
I resent you pointing out my mental deficiencies
