Classification of evenets in Time (Arrow?)

Forums ProRealTime English forum General trading discussions Classification of evenets in Time (Arrow?)

  • This topic has 11 replies, 5 voices, and was last updated 1 week ago by avatarZigo.
Viewing 12 posts - 1 through 12 (of 12 total)
  • #204751

    Is it possible to arrange the values of different events in aan arrow of time?

    #204822

    Yes it can.

    #204825

    Is your screenshot above using the PRT Platform ONLY?

    #204830

    Yes

    #204840

    What Version PRT Platform are you using to provide the information you show in your screenshot above, for example the Dyn Close Line?

    #204841

    I use PRT V11.

     

    1 user thanked author for this post.
    #204920

    Anyone?

    The JK indicator gives signals down and up. (red and blue)

    How can you program and record the last ten times of these signals in PRT language.

    Oldest = e.g. T1 then T2…… T10 in the attached example 8 signals down and 2 signals up.

    #204925

    To record the last N signals you need to use an N-element array for each datum you are interested in.

    If you want to save the BarIndex of the signal you may use $SignalBAR[N].

    If you also need to save the type (Long, Short), then you may also use $SignalTYPE[N], and so on…

    I recommend that you initialize to 0 all N elements on barindex 0, the very first bar.
    Whenever s new signal is returned, shift all elements from 1 to N-1 one place, then store the new signal as element 1 (your former element 10 will be dropped).

    You will always have the last N signals in the correct order.

    Any N-element stored with 0 is a void signal, not yet filled.

    Since the first element in the array is element 0, which may slightly complicate maths on element indexing, I recommend initializing N+1 elements (elements 0 to 10 for 10 elements, instead of 0-9, then using only elements 1 to 10).

     

    1 user thanked author for this post.
    #231445

     

    Hello

    I have been looking into Eliott wave indicator for years and found that the workable cycles for traders can be reduced to three levels and have incorporated them into an indicator. (123xyz). The fastest cycle starts at a red (short) or green (long), rectangle, the middle cycle starts at a red (short) or green (long) triangle and the main cycle starts at a red (short) or a green (long) ellipse.
    123XYZ is an empirical approach to wave theory. An example of this can be seen in the attached image.
    In the large rectangles you can see the three symbols short and also the three symbols long. The symbols are also programmed.
    One question remains how should I program the colour of the symbols, if I use coloured(r,g,b) the edges are coloured, but how can I fill the symbols with e.g. the same colour.
    Thank you

     

    #231449
    JS

    If the “symbols” are based on the “Draw” command, you can use “FillColor”…

    DRAWRECTANGLE(barindex, close, barindex[5], close[5])FILLCOLOR(255,0,0)

    DRAWELLIPSE(barindex[5], close, barindex[10], close[5])FILLCOLOR(0,255,0)

    1 user thanked author for this post.
    #231452

    hi.

    With draw (rectangle,triangle,ellipse,candle) you can add  the ‘BORDERCOLOR(r,g,b,a) statement in the line.

    Adding this, changes object from a border to fill’ed object.

    Coloured(r,g,b,a)  controls the fill’ed part when bordercolor used.

    When BORDERCOLOR(r,g,b,0) used, object is fill’ed only, no border if transparency is zero.

    Using these allows combinations of  border/fill’ed as well as colour combinations.

    druby

     

     

     

    1 user thanked author for this post.
    #231453

    @ JS thanks a lot. This technic I knew.


    @Druby
    thats exacly what I menth, thank you very much.

Viewing 12 posts - 1 through 12 (of 12 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login