| Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL. |
![]() | | Tweet | |
Candle pattern Details »» | |||||||||||||||||||||||||||||
CANDLE PATTERN CODE CONVERTED TO EASYLANGUAGE by STRATOPT, INC 2008 modified by TAMS date: 20090201 prints pattern name on bottom of chart date: 20090211 added option to print log date: 20090220 added commentary date: 20090412 added option NOT to print pattern name, (ie. show pattern name only when you click on the bar) MC version can adjust text size (MC = MultiCharts) note: 1. if you don't believe in seeing the candle names, please move on. 2. this indicator has been tested in MultiCharts. If you don't know how to import it into tradestation, please spend 5min with your user's guide. ![]() Download Now
Screenshots Show Your Support
| |||||||||||||||||||||||||||||
| The Following 8 Users Say Thank You to Tams For This Useful Post: | ||
aaa (04-13-2009), berrob (10-11-2010), braza81 (11-09-2010), daedalus (04-18-2009), indicator-master (04-30-2009), TIKITRADER (05-23-2010), Yasha (01-02-2012) | ||
| Comments |
| | #2 | ||
![]() | Re: Candle pattern This is a suggestion to have only one candle at a time Code: if ((C>O) AND((C-O)/(.001+H-L)>.6)) then Message = Message + " LongWhiteCandle" else if (C>O) then Message = Message + " WhiteCandle" else if ((C>O) AND ((H-L)>(3*(C-O)))) then Message = Message + " SmallWhiteCandle" ; if (O>C AND (O-C)/(.001+H-L)>.6) then Message = Message + " LongBlkCandle" else if (O>C) then Message = Message + " BlkCandle" else if ((O>C) AND ((H-L)>(3*(O-C)))) then Message = Message + " SmallBlkCandle" ; | ||
| |
|
| | #3 | ||
![]() | Re: Candle pattern Quote:
I have reviewed various codes floating around the internet, I think some of this code can be attributed to Surinote. My contribution is limited to making the candle names visible on the chart. I believe the multi-label is due to a candle having multiple attributes. As in any indicator, one really need to understand the context to make it meaningful. Last edited by Tams; 04-13-2009 at 12:11 PM. | ||
| |
|
| | #4 | ||
![]() | Re: Candle pattern This is an other suggestion to choose only one gap It Code: // Gaps if GapUp AND GapUp[1] then Message = Message + "DoubleGapUp" else if L > 1.02 * H1 then Message = Message + "HugeGapUp" else if L > 1.01 * H1 then Message = Message + "BigGapUp" else if GapUp then Message = Message + "GapUp" ; if GapDn AND GapDn[ 1] then Message = Message + "DoubleGapDown" else if H < 0.98 * L1 then Message = Message + "HugeGapDown" else if H < 0.99 * L1 then Message = Message + "BigGapDown" else if GapDn then Message = Message + "GapDown" ; | ||
| |
|
| The Following User Says Thank You to aaa For This Useful Post: | ||
Tams (04-18-2009) | ||
| | #5 | ||
![]() | Re: Candle pattern If condition1 true then condition1 else if Condition2 true then condition2 ect.. I have problems with If * then begin * * end else noplot | ||
| |
|
| | #6 | ||
![]() | Re: Candle pattern Quote:
I think it will require some major re-engineering work. I am busy in the next few weeks... let me see if I can schedule it sometime in May. Last edited by Tams; 04-18-2009 at 03:10 PM. | ||
| |
|
| The Following User Says Thank You to Tams For This Useful Post: | ||
aaa (04-18-2009) | ||
| | #7 | ||
![]() | Re: Candle pattern | ||
| |
|
| The Following User Says Thank You to daedalus For This Useful Post: | ||
Tams (09-21-2009) | ||
| | #8 | ||
![]() | Re: Candle pattern I sometimes come across some EasyLanguage indicator code that I would like to translate; however, they have the ELD extention and I don't have tradestation. Is there any other way to open these files for me to examine the code? I usually can do the translation myself, but I can't open files with this extention. | ||
| |
|
![]() |
| Tags |
| candle, easylanguage, log, multicharts, print |
| Thread Tools | |
| Help Others By Rating This Thread | |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Easylanguage Candle Ident | raven4ns | The Candlestick Corner | 18 | 07-01-2009 08:38 AM |
| Candle Pattern Regnition Study | raven4ns | Coding Forum | 0 | 02-04-2009 07:42 AM |
| Anyone Have a MTF Candle Indi for Tradestation? | disavowed | The Candlestick Corner | 1 | 02-03-2009 12:30 AM |
| For you candle chartists.... | TinGull | The Candlestick Corner | 9 | 11-09-2007 01:56 PM |
| [Candle Patterns and Previous Day High] | Soultrader | Trading Videos | 7 | 03-20-2007 02:20 AM |