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.

aaa

Members
  • Content Count

    466
  • Joined

  • Last visited

Everything posted by aaa

  1. // xDays back Hi-Lo (RT intraday) Line // author: MultiCharts // Version 1.01 // date: 20090523 // aaa // Hi-Lo extracted from the Day Open-Hi-Lo Lines Multicharts Indicator // added // StartDate( 1090515) YYYMMDD // lookback( 0 ) // set to 0 = StartDate // set to x nbre = x days back // Version 1.02 // date: 20090531 // aaa // added // Price on the right side of the lines xDays back Hi-Lo (RT intraday) Line 1.02.txt
  2. If it could help they are more information in TS help than in MC help HighD is documented in TS 8.4 Easylanguage help.chm ( 3.5 Mo ) not in MC 5.0 Powerlanguage Help.chm ( only 0.2 Mo) TS 8.4 Easylanguage help.rar MC 5.0 Powerlanguage Help.rar
  3. After spending 5 days during the week to watch bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars... I'm glad to know that I can spend 2 more days during the week end to watch bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars after bars... :haha::haha::haha::haha::haha::haha::haha::haha:
  4. :shrug:It was a suggestion and I didn't thought it was complicate :shrug: I hope that it is a good idea to represent different scales in dots line It should open doors to different indicators (stochastique etc...) that I could try to developp here May be only one line ? ...Half a line ?
  5. what a coincidence, I also use a paintbar with 6 JTHMA with these fibo values 5 13 34 89 233 610
  6. Here is my output in a 1 mn chart 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 1.00 1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 1.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
  7. Everything is said, specially for perfect beginners.
  8. When a swing is detected as a perfect swing ? At the end !? Taking a position at the right side of the chart When a swing is detected can turn quickly in the other way But They never show graphs with this kind of aborted swing
  9. aaa

    Bar Numbering

    In navigator/studies/functions/BarNumber BarNumber = BarNumber[1] + 1 ; I'm wondering if it is possible to count bars from a date before May be a trick is a solution ?
  10. So my code was good and you've found what was "missing" !! I don't find HighD LowD in the Multicharts User Guide... Anyway It works fine with this if currentbar = 1 then begin Multicharts User Guide Currentbar Returns the number of the current bar.
  11. We all know people making things really complicated I also know people ; clever, kind, generous, patient, unaffected, moderate, peacefull, wise, openminded, explaining things clearly...
  12. If I understood well, it's a mix of trailing stop + breaking lines + PullBack ? Excellent in squeeze and in extremes variation eager to test it next week ThanX Tams to share your good ideas/indicators with us PS Programmer explained in the post below, with such humor (:=)))))) that broken lines are more important than millions of redundant indicators based on price action with delay http://www.traderslaboratory.com/forums/34/chart-patterns-reliable-623-2.html#post65593
  13. aaa

    Bar Numbering

    Grrr... always forgotten to join a graph....:crap: How to compute the numbers of bars from a fixed time and date to the LastBarOnChart ? I've started from your code and here is the result Is it the right way ? Input: start.date( 1090526), start_time( 1500 ), color( black ), text.size( 8 ); var: bar_num( 0), id_txt( 0); if Time > start_time and date > start.date then begin if bar_num = 0 then bar_num = 1; end else bar_num = 0; if bar_num > 0 then begin id_txt = text_new_self( d, time[1], 0, text(bar_num:0:0) ); text_setcolor(id_txt, color ); text_setsize( id_txt, text.size ); bar_num = bar_num + 1; end;
  14. I try to add the price at the last bar of the top/low only in the current day without success... My code is wrong or missing something
  15. crossing ADE - All Data Everywhere with Red Light / Green Light Tams You explained very clearly what we can do with All Data Everywhere Leanrning from an indicator is the best to understand EasyLangage Would you mind to code a "Bach' variation" from Red Light / Green Light to show how ADE works ? In a 1 mn chart First line of dots The indicator turns green when the price is trading above the MA of a 60 mn chart and turns red when the price is trading below the MA 60 mn Second line of dots The indicator turns green when the price is trading above the MA of a 15 mn chart and turns red when the price is trading below the MA 15 mn Third line of dots The indicator turns green when the price is trading above the MA of a 5 mn chart and turns red when the price is trading below the MA 5 mn
  16. aaa

    Bar Numbering

    I've started to adapt this indicator to compute the numbers of bars from a fixed time and date to the LastBarOnChart inputs: BeginTime ( 0800 ), BeginDate ( 1090527 ); variables: bar_num ( 0 ), LengthBeginTime( 0 ); if Time > BeginTime then begin if bar_num = 0 then bar_num = 1 ; end else bar_num = 0 ; if bar_num > 0 then begin bar_num = bar_num + 1 ; end; LengthBeginTime = bar_num ; Now I have a problem to set BeginDate ( 1090527 ) How to go back in a specified date before ? Is it possible ? Any suggestion is welcomed.
  17. aaa

    Bar Numbering

    -------------------------------
  18. I follow my idea, step by step, putting code from here to there I try to add the price at the last bar of the top/low only in the current day without success Any suggestion is welcomed var5 = High ; var6 = Low ; Value10 = Text_New(Date, Time, var5 , "High"); Value11 = Text_New(Date, Time, var6 , "Low"); text_SetLocation(Value10,date, time, var5); text_SetLocation(Value11,date, time, var6); Text_SetString(Value10, "High"+ NumToStr(var5, 2) ); Text_SetString(Value11, "Low" + NumToStr(var6, 2) );
  19. I found this post on "Re: Chart Patterns: Reliable?" interesting and have nominated it accordingly for "Topic Of The Month May, 2009"
  20. I like this one print(File("D:\text.asc"),plot1);
  21. I agree with you I've started programming less than a year only in reading code samples in this great site with the help of good teachers. Before I knew only 2+2 results with Excel ( 3 and half, I think ?) Now I can manipulate basic codes and I'm afraid to be not as intelligent as you are to do more because I know my limits in logic. So easyLangage is "easy" for real beginners with strong motivations to do basic things. Good luck in your studies !
  22. Is The code truncated ? Or where to put this code in ? Could you send an entire indicator/function/signal ?
  23. // xDays back Hi-Lo (RT intraday) Line // author: MultiCharts // Version 1.01 // date: 2009053 // aaa // Hi-Lo extracted from the Day Open-Hi-Lo Lines Multicharts Indicator // added // StartDate( 1090515) YYYMMDD // lookback( 0 ) // set to 0 = StartDate // set to x nbre = x days back Please, if needed, feel free to correct my code xDays back Hi-Lo (RT intraday) Line.txt
  24. Philloo (phoneticly whose stealing with ruse, address) could you explain the way to have the same representation like in you chart ? Could you also post the signal code wich shows the entry/exit ? ThanX Here is the pdf Multi System Dr Clayburg .pdf
  25. In the CMI indicators nothing is printed in the output PLE window except 53.49 print( plot1 ) = what is this for ? For debugging ? In case of errors it will print them ?
×
×
  • Create New...

Important Information

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