Traders Laboratory - View Single Post - 'Markets In Profile': Detailed Book Review
View Single Post
  #21 (permalink)  
Old 04-19-2008, 05:36 PM
Frank Frank is offline
Frank has no status.

 
Join Date: Jan 2008
Posts: 56
Thanks: 0
Thanked 74 Times in 23 Posts
Re: 'Markets In Profile': Detailed Book Review

Auction Trend is a breakthrough achievment in Market Profile history I first developed in 1978............ uh, just kidding: 'Auction Trend' is a random name I gave to my indicator. Didn't know what to call it and spent a good 8 seconds thinking about it before I decided on that.

I defined the indicator in the above post -- here is the EasyLanguage code. it is nothing special and should be used in context with many other indicators.


value1=(vwap_h+c)/2;

value2=value1-average(c,40)[1];

plot1(value2,"value2");
plot2(5,"5");
plot3(-5,"-5");


if value2>=0 then
setplotcolor(1,green)
else
setplotcolor(1,red);

Reply With Quote
The Following User Says Thank You to Frank For This Useful Post:
thrunner (04-19-2008)