Indicatore per prorealtime traslate

Forums ProRealTime forum Italiano Supporto ProBuilder Indicatore per prorealtime traslate

Viewing 5 posts - 1 through 5 (of 5 total)
  • #21367

    E’ possibile trasformare questo per prorealtime?

     

    //—- indicator options
    #property indicator_separate_window
    #property indicator_buffers 1
    #property indicator_color1 Red
    #property indicator_level1 0.5
    //—- input parameters
    extern int n = 5;
    extern int nBars = 1000;
    //—- indicator buffers
    double ibuffer[];

    #define LOG_2_0 0.69314718055994530941723212145818 //MathLog(2.0);

    //+——————————————————————+
    //| Custom indicator initialization function |
    //+——————————————————————+
    int init()
    {
    //—- drawing settings
    SetIndexBuffer(0,ibuffer);
    SetIndexStyle(0,DRAW_LINE);
    SetIndexDrawBegin(0,Bars-nBars);
    SetIndexLabel(0,”iVAR”);
    //—- name for DataWindow and indicator subwindow label
    IndicatorShortName(“iVAR(“+n+”)”);
    return(0);
    }
    //+——————————————————————+
    //| Custom indicator iteration function |
    //+——————————————————————+
    int start()
    {
    int i, j, k, kCount, nTotal, nCountedBars = IndicatorCounted();
    int ihigh, ilow, nInterval, nIntervalStart;
    double Delta, Xc, Yc, Sx, Sy, Sxx, Sxy;
    //—- last counted bar will be recounted
    if(nCountedBars==0) nTotal = nBars;
    if(nCountedBars>0) nTotal = Bars-nCountedBars-1;
    //—- main loop
    for(j=nTotal; j>=0; j–)
    {
    Sx = 0; Sy = 0; Sxx = 0; Sxy = 0;
    for(i=0; i<=n; i++)
    {
    nInterval = 1 << (n-i); //MathPow(2,n-i);
    kCount = 1 << i; //MathPow(2,i);
    //—- summarise differences of the maximum and minimum prices on an interval
    for(Delta=0, k=0; k<kCount; k++)
    {
    nIntervalStart = nInterval*k+j;
    ihigh = iHighest(Symbol(),0,MODE_HIGH,nInterval,nIntervalStart);
    ilow = iLowest(Symbol(),0,MODE_LOW,nInterval,nIntervalStart);
    Delta += High[ihigh]-Low[ilow];
    }
    //—- compute coordinate of variation [Xc,Yc] in double logarithmic scale
    Xc = (n-i)*LOG_2_0; //MathLog(2.0);
    Yc = MathLog(Delta);
    //—- accumulate data for finding of factors of line of regress by means of LMS (least mean squares)
    Sx += Xc;
    Sy += Yc;
    Sxx += Xc*Xc;
    Sxy += Xc*Yc;
    }
    //—- compute variation index (slope of the line of regress)
    ibuffer[j] = -(Sx*Sy-(n+1)*Sxy)/(Sx*Sx-(n+1)*Sxx);
    }
    return(0);

    #21375

    Ti dispiacerebbe dirci che cosa è questo indicatore su e screenshot per favore? Questo tipo di indicatore potrebbe essere stata già posta da qualche parte nel sito. Grazie.

    #21438

    Nicolas grazie della risposta, sinceramente non ne ho idea, l ‘ho preso in un forum russo. 🙂

    #21504

    Quindi vuoi che passo ore a tradurre un indicatore non si ha la minima idea di che cosa si tratta? È questo grave?

    #21614

    ore? no assolutamente se è una questione di qualche minuto ok , altrimenti non fa niente

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

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