Aggiungere segnale buy e sell a indicatore PRC_Pivot Point Supertrend
Forums › ProRealTime forum Italiano › Supporto ProBuilder › Aggiungere segnale buy e sell a indicatore PRC_Pivot Point Supertrend
- This topic has 4 replies, 2 voices, and was last updated 1 year ago by Msport71.
-
-
05/03/2023 at 10:31 AM #214043
Buongiorno,
chiedo cortese aiuto per integrare l’indicatore PRC Pivot Point Supertrend (2-3-10) con segnali Buy e Sell.
https://www.prorealcode.com/prorealtime-indicators/pivot-point-supertrend/
Sono riuscito con l’indicatore Supertrend (presumo di defaul di PRT) ma non riesco con nessuna delle sintassi proposte dal software e ricevo segnalazione di errore.
Pobabilmente devo usare la funzione Call , ma non mi è chiara la sintassi esatta.
Grazie e mille.
P.s. Di seguito la sintassi che riesco a utilizzare con l’indicatore Supertrend.
MyLongConditions = close CROSSES OVER Supertrend[3,10]
MyShortConditions = close CROSSES UNDER Supertrend[3,10]
IF MyShortConditions THEN
DrawText(“Sell”,barIndex, high + range*2,serif,bold,15) coloured(255,0,0,255)
ELSIF MyLongConditions THEN
DrawText(“Buy”,barIndex, low – range*2,serif,bold,15) coloured(0,128,0,135)
ENDIF
RETURN05/03/2023 at 10:50 AM #214046Non puoi mettere BUY/SELL in un indicatore, ma in una strategia.
Gli indicatori NON possono acquistare o vendere.
05/03/2023 at 11:58 AM #214054Probabilmente mi sono spiegato male.
Allego screenshot dove il grafico mi evidenzia in maniera testuale con le parole buy e sell i cross del prezzo rispetto all’indicatore Supertrend.
Vorrei ottenere lo stesso sostituendo l’indicatore Supertrend con il Pivot Supertrend…
Grazie
05/03/2023 at 2:57 PM #214074Adesso è chiaro, ho aggiunto le tue righe, modificate, alla fine del codice, immediatamente prima di RETURN:
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105//PRC_Pivot Point Supertrend | indicator//30.06.2020//Nicolas @ www.prorealcode.com//Sharing ProRealTime knowledge//converted from pinescript// -- settingsprd = 2 //Pivot Point PeriodFactor = 3 //ATR FactorPd = 10 //ATR Periodshowpivot = 0 // Show Pivot Points (1 = true ; 0 =false)showcl = 0 //Show PP Center Line (1 = true ; 0 =false)showsr = 0 //Show Support/Resistance (1 = true ; 0 =false)// --- end of settingsatr = averagetruerange[14]if high[prd] >= highest[(prd)*2+1](high) thenph = high[prd]if showpivot thendrawtext("H",barindex[prd],ph+atr/2,dialog,standard,20) coloured(255,0,0)endiflastpp = phendifif low[prd] <= lowest[(prd)*2+1](low) thenpl = low[prd]if showpivot thendrawtext("L",barindex[prd],pl-atr/2,dialog,standard,20) coloured(0,255,0)endiflastpp = plendifif lastpp<>lastpp[1] thenif center=0 thencenter = lastppelsecenter = (center * 2 + lastpp) / 3endifendifUp = center - (Factor * averagetruerange[Pd])Dn = center + (Factor * averagetruerange[Pd])Trend = 0if close[1] > TUp[1] thenTuP = max(Up, TUp[1])elseTuP= Upendifif close[1] < TDown[1] thenTDown= min(Dn, TDown[1])elseTDown= Dnendifif close > TDown[1] thentrend = 1elsif close < TUp[1] thentrend = -1elsetrend = Trend[1]endifonce trend=1if Trend = 1 thentrailingsl = TUpr=0g=255elsetrailingsl = TDownr=255g=0endifif showcl thenalpha=255if center<medianprice thenclr=0clb=255elseclr=255clb=0endifendifsr = undefinedif showsr thensr = lastppif lastpp=ph thensrr=255srg=0elsesrr=0srg=255endifendifMyLongConditions = close CROSSES OVER trailingslMyShortConditions = close CROSSES UNDER trailingslIF MyShortConditions THENDrawText("Sell",barIndex, trailingsl + range,serif,bold,15) coloured(255,0,0,255)ELSIF MyLongConditions THENDrawText("Buy",barIndex, trailingsl - range,serif,bold,15) coloured(0,128,0,135)ENDIFreturn trailingsl coloured(r,g,0) style(line,2) as "Supertrend pivot point", center coloured(clr,0,clb,alpha) as "early exit", sr coloured(srr,srg,0) style(point,2) as "support / resistance"05/03/2023 at 3:51 PM #214079 -
AuthorPosts
Find exclusive trading pro-tools on