|
|
|
|
|||||||
| Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL. |
![]() |
|
|
LinkBack (1) | Release Tools | Display Modes |
|
|
||||
|
||||
|
Heikin Ashi Trend Indicator
Here's an interesting indicator I picked off at the TS forum. It's a slightly modifed version of the heikin ashii indicator.
So What Does It Do? If the 5th bar of the last 5 bars closes above the 50% line of the previous 5 bar average, it stays the same color. If the 5th bar closes below the the 50% average it changes color. 50% range = Average True Range It really depends on how you want to use it. This can be applied on...
__________________
James Lee Email: JamesLee@traderslaborator y.com Skype: james.lee03 TradersLaboratory.com ********************** Empowering traders with knowledge. |
|
By
JayRemy
on
12-27-2006, 05:14 PM
|
|
Re: Heikin Ashi Trend Indicator
thanks nick,
the brick indictaor looked a bit too much for me, but the squeeze and ttm trend look pretty cool. I never really thought about looking at the tradestation forums, so thanks for the tip :p Do people make money with these indicators? I've always thought indicators were a waste of time but these look ok! ah! that workspace looked interesting although i dont really know what the WPCVA or ESINK is Although, I trade the YM myself.cheers, jay. |
|
By
nicknextmove
on
12-27-2006, 06:15 PM
|
|
Re: Heikin Ashi Trend Indicator
Not sure if people are making money with this. I am however studying it.
$ESINX = S&P 500 premium. (This is from the CME). $WPCVA = put/call ratio. (Will cost you $1/month to subscribe from ARCA) I have uploaded videos regarding the two here, since they were too big for this forum: RapidShare Link to videos |
|
By
JayRemy
on
12-27-2006, 08:24 PM
|
|
Re: Heikin Ashi Trend Indicator
thanks for those videos nick - are they from the live trading room from trade the markets.com. - i always wanted to know what it looked like in there :p
are you a member at tradethemarkets.com. I always fancied joining up, but its a bit expensive without really knowing if its any good! |
|
By
nicknextmove
on
12-27-2006, 10:04 PM
|
|
Re: Heikin Ashi Trend Indicator
No - they are free videos. You can sign up for the free videos at their website.
|
|
By
Kiwi
on
02-06-2007, 08:58 PM
|
|
Re: Heikin Ashi Trend Indicator
Here it is in C++
BaseDataIn 0 is open, 1 is high, 2 is low and 3 is close: int pos, updn=0; float jO=0, jH, jL, jC=0, jHm1, jLm1; sg.DataStartIndex=15; jL=sg.BaseDataIn[4][0]; jO=jL; jC=jL; jH=jL; for (pos=5; pos < sg.ArraySize; pos++) { jHm1=jH; jLm1=jL; jO=(jO+jC)/2; jC=(sg.BaseDataIn[0][pos]+sg.BaseDataIn[1][pos]+sg.BaseDataIn[2][pos]+sg.BaseDataIn[3][pos])/4; if(jO>sg.BaseDataIn[1][pos] && jO>jC) jH=jO; else if(jC>sg.BaseDataIn[1][pos]) jH=jC; else jH=sg.BaseDataIn[1][pos]; if(jO<sg.BaseDataIn[2][pos] && jO<jC) jL=jO; else if(jC<sg.BaseDataIn[2][pos]) jL=jC; else jL=sg.BaseDataIn[2][pos]; if(jH>jHm1 && jL>=jLm1) {updn=1;} else if(jL<jLm1 && jH<=jHm1) {updn=-1;}; if((sg.Input[2].FloatValue!=1 && sg.Input[2].FloatValue!=-1) || (sg.Input[2].FloatValue==1 && updn==1) || (sg.Input[2].FloatValue==-1 && updn==-1)) { sg.Subgraph[0].Data[pos]=jO; sg.Subgraph[1].Data[pos]=jH; sg.Subgraph[2].Data[pos]=jL; sg.Subgraph[3].Data[pos]=jC; }; } |
|
By
nicknextmove
on
02-09-2007, 06:47 PM
|
|||||||||||||||
|
Re: Heikin Ashi Trend Indicator
This is the code for the TTM Trend:
|
|||||||||||||||
|
By
nicknextmove
on
02-09-2007, 06:48 PM
|
|||||||||||||||
|
Re: Heikin Ashi Trend Indicator
This is the code for the Squeeze aka BB Squeeze:
|
|||||||||||||||
|
By
nicknextmove
on
02-09-2007, 06:50 PM
|
|||||||||||||||
|
Re: Heikin Ashi Trend Indicator
This is the code for the 3 Bricks Reversal:
|
|||||||||||||||
![]() |
LinkBacks (?)
LinkBack to this Thread: http://www.traderslaboratory.com/forums/f46/heikin-ashi-trend-indicator-951.html
|
|||
| Posted By | For | Type | Date |
| Heikin ... | This thread | Refback | 02-28-2007 12:43 AM |
| Currently Active Users Viewing This Release: 1 (0 members and 1 guests) | |
| Release Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Release | Release Starter | Category | Comments | Last Post |
| Trend Following Systems | Soultrader | Data Feeds | 7 | 03-06-2007 10:58 AM |
| Trend Trading vs Counter Trend Trading | Soultrader | Technical Analysis | 9 | 10-29-2006 11:32 AM |
| Trend Continuation Setup | Soultrader | Technical Analysis | 0 | 09-26-2006 11:31 PM |
| Consolidation after a trend day | Soultrader | E-mini Futures | 0 | 09-06-2006 09:04 AM |