Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

Fredd

Members
  • Content Count

    22
  • Joined

  • Last visited

Personal Information

  • First Name
    TradersLaboratory.com
  • Last Name
    User
  • City
    Europe
  • Country
    Netherlands
  • Gender
    Male
  • Interests
    Swing Trading

Trading Information

  • Vendor
    No
  • Favorite Markets
    stocks
  • Trading Years
    20+
  • Trading Platform
    Tradestation

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Tnx for your reply Iris and happy trading!
  2. May I ask one of our EL gifted TL members a bit of his or her precious time to help us solving this problem? It seems close to impossible having the combination of candlesticks and a painted cloud forward shifted in time in the ichimoku indicators here in this thread. I understand I am asking a lot of you to solve this problem and I understand if you cannot spend time on this, but maybe .... I have attached a picture of it to help you: candles and a forward shifted painted cloud. Thank you in advance. Fredd
  3. Hi Moyyim, Thanks for sharing this code with us. Your indicator is constructed differently, and probably this code can solve the problem of the other ichimoku indicator. Using your code I couldn't get the cloud be painted, but this is probably due to a specific line formatting. By default all lines are set as normal lines, but I think the cloud must be set differently. Could you tell me how the SAB and the SBC lines are formatted as in your own picture showing the indicator? Thanks again Moyyim. I have included your indicator in ELD format for our TS and MC friends. Fredd ICHIMOKU.ELD
  4. After some months of browsing the web for a correct working ichimoku indicator for TS I still haven't found it. The problem of the Ichi indicator in this thread is the plotting of the cloud, it cannot be shifted forward as it should be. This is because of the way it paints the cloud with trendlines. According to Sneo the forward shifting of the cloud creates problems when switching views from candles to bars in the charts. The combination of a painted cloud and forwarded shifted seems to be impossible the way this indicator is programmed. Thanks in advance. Fredd
  5. And to be complete: These are the lines: Type: Indicator, Name: Ichimoku - Lines Inputs: Standard(26), Turning(9), DelayColor(Yellow), ShowDelayLine(False); Variables:StdLine(0), TurnLine(0), DelayLine(0); StdLine = (Highest(High, Standard) + Lowest(Low, Standard)) / 2; TurnLine = (Highest(High, Turning) + Lowest(Low, Turning)) / 2; DelayLine = Close[standard]; Plot1(StdLine, "Standard"); Plot2(TurnLine, "Turning"); If Close > DelayLine Then SetPlotcolor(2, Blue)Else SetPlotColor(2, DelayColor); If ShowDelayLine Then Plot3[standard](Close, "Delayed"); Chart style: Plot Name Style Weight Standard Line Thinnest Turning Line Thinnest Delayed Line Thinnest Chart color: Plot Name Color Standard Red Turning Blue Delayed Magenta Scaling: Same as symbol. Cheers Fredd
  6. Hi Sneo, This is what a found related to the Cloud. Can you shade this Cloud? Type: Indicator, Name: Ichimoku - Cloud Inputs: Standard(26), Turning(9), Delayed(52); Variables: StdLine(0), TurnLine(0), Span1(0), SPan2(0); StdLine = (Highest(High, Standard) + Lowest(Low, Standard)) / 2; TurnLine = (Highest(High, Turning) + Lowest(Low, Turning)) / 2; Span1 = (StdLine + TurnLine) / 2; Span2 = (Highest(High, Delayed) + Lowest(Low, Delayed)) / 2; Plot1[-Standard](Span1, "Span1"); Plot2[-Standard](Span2, "Span2"); Hope it helps.
  7. Hi Sneo, Thanks for sharing the ichimoku indicator with us, I have been doing some reading about this indicator this week, and I wonder if you could change the settings of the "Cloud" to make them a leading Span. The Cloud isn't plotted into the future yet. Please correct me if I am wrong, but what I have read so far the Senkou Span A and the Senkou Span B - together they form the Cloud - should be plotted 26 days ahead of the last complete trading day. Thanks in advance for changing these settings. For people interested in this topic I suggest you do a search on Google with the words "Ichimoku Charts PDF". I also like the Ichimoku Discussion Forum: Forex, Stock, Commodities, Futures, Bonds site. Cheers Fredd
  8. Hi cooper59, Yep, I just compiled Tams file from *.txt into *.eld. No changes.
  9. Hello, I imported the .eld with Le Beau Stops, but I get an error message telling me that there is a dll problem "Cannot find DLL library file: GlobalVariable.dll" Obviously I am doing something wrong. Could someone help me a bit? Thanks in advance. Fredd
  10. Fredd

    ATR Marker

    Hi Tams, Could you help me a little bit by modifying your indicator into a so called "Chandeliers Exit"? For example by plotting lines representing: Line 1: todays high minus 3 * a ten days exponential moving average ATR, and Line 2: todays low plus 3 * a ten days exponential moving average ATR. It would be useful if the factor 3 is a variable as well as the 10 day period. I read about this exit in the book of Dr. K. Van Tharp - Trade Your Way to Financial Freedom, and it looks like a good exit methodology to me. Thanks for your help in advance. Fredd
  11. Hi all, This afternoon I was browsing at eBay.com and found an add from T2W offering their ATR traling stop indicator for only USD 49,- I wonder if we have this indicator here on this site? Or something what come close to it? Thanks for your help.
  12. Hi Tams, I tried to compile it, but the EL command "text_setsize" in your file isn't in the EL vocab. I replaced it by the command TL_setsize in the .eld file below, but this command isn't probably correct, since I can't discover any text, only some bars get colored. Does anybody know the right command? Thanks in advance. CANDLE_PATTERNS.ELD
  13. Hi Tams, Here´s your TS version. AWESOME.ELD
  14. Hi Tams, Thanks again. Here´s the red light green light indicator for TS. RED_GREEN_LIGHT.ELD
  15. Hi Tams, Thank you for posting the original TS code. It works ! I compiled it and here it is ready to use. HHLL.ELD
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.