Go Back   Traders Laboratory > Trading Resources > Trading Indicators > Coding Forum

Coding Forum Collaborate, receive help, or discuss coding related issues.

Reply
Bookmarks
del.icio.us StumbleUpon Google Digg Facebook Furl Reddit Netscape

 
LinkBack Thread Tools Display Modes Language
  #1 (permalink)  
Old 01-04-2007, 10:06 PM
ant's Avatar
ant ant is offline
Premium Trader

 
Join Date: Sep 2006
Posts: 293
Thanks: 0
Thanked 3 Times in 1 Post
Nasdaq5048: Bars Back that Price Occurred

Nasdaq5048,

The following indicator draws a trendline between 2 bars for each price that they have in common. Is this what you're trying to do?

variables: TickSize( MinMove / PriceScale ), Price( 0 ), TLID( 0 ); if CurrentBar > 2 then begin Price = Low; while Price <= High begin if Price >= Low[1] and Price <= High[1] then TLID = TL_NEW(Date[1], Time[1], Price, Date, Time, Price); Price = Price + TickSize; end; end;

Reply With Quote
  #2 (permalink)  
Old 01-04-2007, 10:35 PM
nasdaq5048 nasdaq5048 is offline
Premium Trader

 
Join Date: Oct 2006
Posts: 36
Thanks: 2
Thanked 0 Times in 0 Posts
Re: Nasdaq5048: Bars Back that Price Occurred

Thanks Ant,

This is what i am looking for. I wrote something like this with a long list of array, this is much more CPU efficient.
A couple of questions:

1) What statement should i add if i only want to print the lines from the last bar? and i dont want any history. I tried if lastbaronchart = false then TL_Delete(TLID) and it doesnt work. And i think using the lastbaronchart function will require manual refresh. Is there a way to make it only draw the latest bar and delete everything before the latest bar?

2) It is perfectly what i am looking for on a 5 min chart. When i apply this to the 5000 contracts / bar chart on the ES, it still only plot the first bar when there are multiple bars within the same time. The thought that i have in the other theard is, can we get the TL_new to plot in every bars on the volume chart even they have the same time by adding the IF statement in front of the TL_new.
If time[5] = high[5] then TLID.......
say for example, there are 4 bars with the same time and with different high or different close. It doesnt matter, just something different so we can distinglish the bar we want to plot within the same time.
So, the IF statement could find the right bar (5 bars ago in this case) even bar[6] or bar[7] has the same time.
This is something that i havent tried or dont know how to try. I am just thinking this logic might be able to get around "Tradestation only considers the first bar in a series of bars that starts at the same time."

Again, i would really appreciate your help.

Reply With Quote
  #3 (permalink)  
Old 01-04-2007, 10:57 PM
nasdaq5048 nasdaq5048 is offline
Premium Trader

 
Join Date: Oct 2006
Posts: 36
Thanks: 2
Thanked 0 Times in 0 Posts
Re: Nasdaq5048: Bars Back that Price Occurred

Actaully not time[5] = high[5] but to set up a array for all the high with the same time (time[5] in this case) and find the right one by matching the high[5] with all the high that match time[5]

Reply With Quote
  #4 (permalink)  
Old 01-04-2007, 11:21 PM
nasdaq5048 nasdaq5048 is offline
Premium Trader

 
Join Date: Oct 2006
Posts: 36
Thanks: 2
Thanked 0 Times in 0 Posts
Re: Nasdaq5048: Bars Back that Price Occurred

Never mind! it wont work. Even if the right bar was identified, the time would still be the same. So, EL would still go back to start the plot from the first bar of that time.

Reply With Quote
  #5 (permalink)  
Old 01-05-2007, 01:00 AM
nasdaq5048 nasdaq5048 is offline
Premium Trader

 
Join Date: Oct 2006
Posts: 36
Thanks: 2
Thanked 0 Times in 0 Posts
Re: Nasdaq5048: Bars Back that Price Occurred

Never mind also to the only plot last bar thing. As i look into the code, it will probably need a loop to look back for how many bars to plot since it is only design to plot the trendline 1 bar back.
I am perfectly happy with the way it is now. Thanks a lot!
I hope others could make use of this code too because i found it very useful to determine the choppyness of the current market. Better than ADX in my opinion just by looking how bars has the current price been repeated

Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Sometimes you want to pat yourself on the back Soultrader E-mini Futures 0 09-05-2006 02:04 PM


All times are GMT -4. The time now is 07:14 PM.

 


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59