|
|
|
|
|||||||
| Coding Forum Collaborate, receive help, or discuss coding related issues. |
![]() |
| Bookmarks | |||||||
del.icio.us
|
StumbleUpon
|
Google
|
Digg
|
Facebook
|
Furl
|
Reddit
|
Netscape
|
|
|
LinkBack | Thread Tools | Display Modes | Language |
|
|||
|
Higher Time Frame Indicator for TS
Hello,
I'm not a TS programmer, so I'm going to ask for help on this. Also, tell me if it's a dumb idea as well. I have limited screen space so instead of having to have multiple charts up for a higher time frame I was wondering if it possible and relatively easy to create a TS showme that prints a dot above each candle indicating the trend direction on a highet timeframe. So, for example, if I generally look at a 266 tick chart and i want to know what the trend is on a timeframe multiple of 3 or 4 times would it be possible to show a dot on the 266 tick chart indicating the trend of the 1064 tick chart (266*4)? A red dot for down or green for up. Of course this could be as complicated depending on the modifiable inputs such as higher timeframe and number of bars to determine trend etc. Any help is appreciated. By the way, I want to sell it for $499. Just kidding ![]() David |
|
|||
|
Re: Higher Time Frame Indicator for TS
Alternatively, if this is as complicated as you plan to get with interchart stuff, you could send highest time trend to a TS global variable and pick it up and plot it on lower time frame charts.
|
|
|||
|
Re: Higher Time Frame Indicator for TS
I just installed the Global Variable DLLs and got it to work. I have a 699-tick chart (my higher timeframe) that passes trend data (crossover events) to my 233-tick chart (my lower timeframe), which paints a dot on the bar of the trend change. Sweet!
However… …this appears to work only with real-time data. In other words, it's useless for back testing. Is this true, or am I missing something? Thanks, Jeff |
|
|||
|
Re: Higher Time Frame Indicator for TS
Yes GV is useless for back testing.
Only holds one / real time / current value hth Last edited by zdo; 03-18-2008 at 07:31 PM. Reason: spelling and grammar |
|
||||
|
Re: Higher Time Frame Indicator for TS
Another way is maintaining a 'synthetic' HTP high low close series based on the lower time frame bar using a multiplier. Maybe this will give you some ideas.
Input NumBars(5); BarCount = BarCount + 1; HTPbarH = maxlist(HTPbarH, H); HTPbarL = minlist(HTPbarL, L); if Barcount = NumBars begin BarCount =0; HTPbarH=High; HTPbarL=Low; etc. etc. |
|
|||
|
Re: Higher Time Frame Indicator for TS
Well, the global variables just did not cut it. I needed something that would work with back testing. I next tried ADE and WOW!
In my opinion, ADE is the way to go. I've installed it, created my own Classes and have been converting my favorite indicators to pass data to other tick-based charts. It works great. Highly recommended if you trade with multiple time frames. Search for it on the TS forums. |
|
|||||||||||||||
|
Re: Higher Time Frame Indicator for TS
|
|||||||||||||||
|
|||
|
Re: Higher Time Frame Indicator for TS
I’ve not noticed a performance drop. Everything seems to work just fine. I’m often running ADE with 699-tick and 233-tick charts. I’ll have other work spaces open as well and all running smooth.
I picked up an Apple Mac Mini last year to exclusively run TradeStation. If you’ve not seem them they are small little boxes about 6” wide and 2” tall. This fits nicely on a desk or hidden under a desk. I’m running on an Apple Mac Mini, Intel Core 2 Duo 1.83 GHz processor, 80-gig drive and 1 gig of ram. The OS is Windows EP Home Edition. In short, it does not seem to be an issue with todays modern desktop computer. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Time Frame Control | MrPaul | Market Analysis | 1 | 11-29-2007 12:31 PM |
| Learning from an unsuccessful trading setup on a smaller time frame | kingking | E-mini Futures | 3 | 02-26-2007 04:51 AM |
| Use Fib projection on small time frame (1 Feb 07) | kingking | E-mini Futures | 0 | 02-16-2007 11:17 AM |
| Trading opportunity in the smaller time frame | kingking | E-mini Futures | 3 | 02-13-2007 08:20 AM |
| Identifying Market Excess: Other Time-Frame Buyers | Soultrader | Market Profile® | 3 | 08-30-2006 07:49 AM |