Hurst indicator MT4 conversione
Forums › ProRealTime forum Italiano › Supporto ProBuilder › Hurst indicator MT4 conversione
- This topic has 6 replies, 2 voices, and was last updated 7 years ago by tatankayotanka.
-
-
01/11/2017 at 11:45 PM #20803
E possibile convertire in linguaggio per prorealtime il seguente script?
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180#property indicator_chart_window#property indicator_buffers 1#property indicator_color1 Whiteextern int year=2010;extern int month=6;extern int day=1;extern int hour=0;extern int minute=0;extern double inf=18000;extern double sup=21000;extern double cyclelength=60;extern double trend=0;extern int Ncicli=2;//---- buffersdouble Hurst[];//+------------------------------------------------------------------+//| Custom indicator initialization function |//+------------------------------------------------------------------+int init(){//---- indicatorsIndicatorBuffers(1);SetIndexBuffer(0,Hurst);SetIndexStyle(0,DRAW_LINE,0,1);IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS));IndicatorShortName(WindowExpertName());return(0);}//+------------------------------------------------------------------+//| Custom indicator deinitialization function |//+------------------------------------------------------------------+int deinit(){//----//----return(0);}//+------------------------------------------------------------------+//| Custom indicator iteration function |//+------------------------------------------------------------------+int start(){double a,ma,w1,w2,w3,w4,cycle,x,grc,c,b,pi;int i,limit,phase;int flag;int counted_bars = IndicatorCounted();if(counted_bars < 0)return(-1);limit=Bars-counted_bars-1;for( i=limit; i>=0; i--) {if (day==TimeDay(Time[i]) && month==TimeMonth(Time[i]) && year==TimeYear(Time[i]) && hour==TimeHour(Time[i]) && minute==TimeMinute(Time[i])){flag=1;}if( flag==0) {Hurst[i]=EMPTY_VALUE;}else{a=a+1;x=(360/cyclelength)*a;phase=-90;pi=3.1415926535;w1=MathSin(((8*x+phase)*pi)/180);w2=2*MathSin(((4*x+phase)*pi)/180);w3=3*MathSin(((2*x+phase)*pi)/180);w4=4*MathSin(((x+phase)*pi)/180);if (Ncicli==3) {w1=MathSin(((12*x+phase)*pi)/180);w2=2*MathSin(((6*x+phase)*pi)/180);w3=3*MathSin(((3*x+phase)*pi)/180);w4=4*MathSin(((x+phase)*pi)/180);}cycle=(w1+w2+w3+w4);grc=0.01029;c=(grc*trend*1);b=b+c;Hurst[i]=(cycle+b+10)*((sup-inf)/15)+inf;}}return(0);}//+-----------------------------+01/12/2017 at 3:17 PM #20871Ho aperto un argomento specifico per questa nuova richiesta. Si prega di fare un tema per ogni richiesta! 🙂
Ti dispiacerebbe dirci che cosa è questo indicatore su tutti? Si prega di fornire almeno il file .mq4 originale e alcuni screenshot, grazie.01/12/2017 at 11:13 PM #20951E’ un indicatore ciclico,che si attacca al grafico… e ti mostra la previsione… va settato..anche questo a piacimento…
01/13/2017 at 10:20 AM #20973Questo è ciò che ottengo quando convertirlo in ProRealTime. Non so se è preciso per voi. Non è possibile trarre curva nel futuro (a destra del prezzo) con ProBuilder, quindi la curva disegnata sotto del prezzo se già la previsione secondo la formula. Spero che sia d’aiuto.
1234567891011121314151617181920212223242526272829303132333435363738394041start = 20000101inf=18000sup=21000cyclelength=60trend=0Ncicli=2if date>=start thena=a+1x=(360/cyclelength)*aphase=-90pi=3.1415926535w1=Sin(((8*x+phase)*pi)/180)w2=2*sin(((4*x+phase)*pi)/180)w3=3*sin(((2*x+phase)*pi)/180)w4=4*sin(((x+phase)*pi)/180)if (Ncicli=3) thenw1=sin(((12*x+phase)*pi)/180)w2=2*sin(((6*x+phase)*pi)/180)w3=3*sin(((3*x+phase)*pi)/180)w4=4*sin(((x+phase)*pi)/180)endifccycle=(w1+w2+w3+w4)grc=0.01029c=(grc*trend*1)b=b+cHurst=(ccycle+b+10)*((sup-inf)/15)+infendifreturn hurst as "Hurst cycle"01/14/2017 at 1:42 AM #21036Si si non e proprio la stessa cosa ma mi è d’aiuto . non e possibile inserirlo insieme al prezzo?
01/14/2017 at 11:48 AM #21043Este es exactamente el mismo código que el del código metatrader que compartes en esta publicación. La captura de pantalla que publicas en tu anterior no es de una plataforma metatrader sino de otra, por lo que no debería ser el mismo indicador.
Puesto que este indicador convertido no comparte la misma escala, no se puede agregar en precio pero solamente como oscilador en una ventana separada.
Para calcular el ciclo de Hurst, los datos deben comenzar a partir de una fecha definida, y eso es lo que hay que cambiar en la línea 1 con la variable “start”.01/14/2017 at 4:52 PM #21084 -
AuthorPosts
Find exclusive trading pro-tools on