| Coding Forum Collaborate, receive help, or discuss coding related issues. |
![]() | | Tweet | |
| | #1 | ||
![]() | Higher Time Frame Indicator for TS 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 | ||
| |
|
| | #2 | ||
![]() | Re: Higher Time Frame Indicator for TS It is possible to do, however when using tick charts you need to use ADE, which stands for "All Data Everywhere", and it is available from the TS forum. ADE is also quite CPU intensive, so you have to take that into consideration. If you were using min to min data, then that would be straightforward. Hope this helps Blu-Ray
__________________ “ Search is the ultimate expression of the power of the individual, using a computer, looking at the world, and finding exactly what they want ” – Eric Schmidt, Google | ||
| |
|
| | #3 | ||
![]() | Re: Higher Time Frame Indicator for TS | ||
| |
|
| | #4 | ||
![]() | Re: Higher Time Frame Indicator for TS 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 | ||
| |
|
| | #5 | ||
![]() | Re: Higher Time Frame Indicator for TS Only holds one / real time / current value hth Last edited by zdo; 03-18-2008 at 07:31 PM. Reason: spelling and grammar | ||
| |
|
| | #6 | ||
![]() | Re: Higher Time Frame Indicator for TS 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. | ||
| |
|
| | #7 | ||
![]() | Re: Higher Time Frame Indicator for TS 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. | ||
| |
|
| | #8 | ||
![]() | Re: Higher Time Frame Indicator for TS Quote:
| ||
|
![]() |
| Tags |
| multiple time frame |
| Thread Tools | |
| Display Modes | Help Others By Rating This Thread |
| |
| ∧ 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 Trading Laboratory | 3 | 02-26-2007 04:51 AM |
| Use Fib projection on small time frame (1 Feb 07) | kingking | E-mini Futures Trading Laboratory | 0 | 02-16-2007 11:17 AM |
| Trading opportunity in the smaller time frame | kingking | E-mini Futures Trading Laboratory | 3 | 02-13-2007 08:20 AM |
| Identifying Market Excess: Other Time-Frame Buyers | Soultrader | Market Profile | 3 | 08-30-2006 07:49 AM |