Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

Crazynasdaq

Members
  • Content Count

    25
  • Joined

  • Last visited

Everything posted by Crazynasdaq

  1. Here I try to convert the indicator from TS8 to TS2000i.....I try, but I don't know if it works because I don't use it since time. { WAV_Vol_3 Indicator WAV 8/20/05 intended for intra-day sessions only plots histogram showing both upTicks and DownTicks for a bar in real time - the larger of the 2 is always shown on top plots volume average plots mid-point of total average as a dot } inputs: UpColor(green), DnColor(red); vars: VolAvg(0), {//plotted vol avg} Vol(0); {//intra-bar volume (ticks)} {//only for intra-day} if Datacompression < 2 then begin Vol = ticks; {//sum of upticks and downticks} {//do not change order of following //be sure both plot3 and plo4 are same width} if UpTicks < DownTicks then begin plot3(UpTicks,"UpDn",UpColor); plot4(vol,"Total",DnColor); end else begin plot3(DownTicks,"UpDn",DnColor); plot4(vol,"Total",UpColor); end; {//plot mid point of total ticks with a dot //dot should fit within histogram} end;{//if BarType}
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.