Traders Laboratory - View Single Post - Bid-Ask Tape Indicator
View Single Post
  #21 (permalink)  
Old 01-14-2008, 02:29 PM
zdo zdo is offline
zdo is an internet handle

 
Join Date: Nov 2007
Posts: 159
Thanks: 34
Thanked 38 Times in 27 Posts
Re: Bid-Ask Tape Indicator

Quote:
View Post
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

Reply With Quote