Sistema automatico VWAP
Forums › ProRealTime forum Italiano › Supporto ProOrder › Sistema automatico VWAP
- This topic has 7 replies, 2 voices, and was last updated 3 years ago by robertogozzi.
Tagged: bands, HA, heikin ashi, volume, vwap, vwap bands
-
-
02/11/2021 at 8:18 AM #161016
Buongiorno, vorrei sapere se è possibile creare un sistema che :
acquista quando: una candela heikin ashi chiude al di fuori della 3 banda inferiore del VWAP e successivamente c’è una candela blu(rialzista ) dentro alla 3a inferiore banda del VWAP
Vende: una candela heikin ashi chiude al di fuori della 3 banda superioredel VWAP e successivamente c’è una candela rossa(ribassista) dentro alla 3a banda superiore del VWAP
Ringrazio anticipatamente a chi vorrà rispondermi.
Buon lavoro a tutti.
02/11/2021 at 8:39 AM #161020Si, cerco di fartelo appena possibile.
02/11/2021 at 8:40 AM #161021Grazie mille ,sei gentilissimo.
02/12/2021 at 11:31 AM #161169Quali bande VWAP utilizzi?
02/12/2021 at 12:26 PM #161175Eccomi, guarda sulla piattaforma l’unico settaggio è “giornaliero” , spero fosse la risposta che ti aspettavi, comunque per sicurezza ti ho allegato la foto di com’è configurato l’indicatore
02/12/2021 at 1:02 PM #161182E’ quello predefinito, però non si può utilizzare per le strategie, utuilizzerò questo https://www.prorealcode.com/prorealtime-indicators/vwap-intraday/.
02/12/2021 at 1:06 PM #161184Ho spostato la discussione nel supporto ProOrder in quanto riguarda strategie, noin indicatori.
Qui sotto, evidenziate in giallo, ci sono le regole prioncipali, tra le quali sono indicati i forum di supporto disponibili.
02/12/2021 at 5:30 PM #161214Eccolo:
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657//////////////////////////////////////////////////////////////////////////DEFPARAM CumulateOrders = false//------------------------------------------------------------------------// Setup delle candele Heikin-Ashionce xOpen = openxClose = (open + close + high + low) / 4if barindex > 0 thenxOpen = (xOpen + xClose[1]) / 2endif//xLow = min(low,min(xClose,xOpen))//xHigh = max(high,max(xClose,xOpen))//xTypic = (xHigh + xLow + xClose) / 3//xMed = (xHigh + xLow) / 2//xRange = xHigh - xLowBullish = xClose > xOpenBearish = xClose < xOpen//------------------------------------------------------------------------// VWAP intraday (& bands)//// https://www.prorealcode.com/prorealtime-indicators/vwap-intraday///------------------------------------------------------------------------d = max(1, intradaybarindex)IF Volume > 0 THENVWAP = SUMMATION[d](volume*typicalprice)/SUMMATION[d](volume)ENDIFif (intradaybarindex=0) thensd = 0elsesd = SUMMATION[d](max(abs(high-vwap),abs(vwap-low)))/dendifSDup1 = vwap+sdSDlw1 = vwap-sdSDup2 = vwap+sd*2SDlw2 = vwap-sd*2SDup3 = vwap+sd*3SDlw3 = vwap-sd*3//RETURN VWAP as "VWAP",SDup1 as "upper1",SDlw1 as "lower1",SDup2 as "upper2",SDlw2 as "lower2",SDup3 as "upper3",SDlw3 as "lower3"//////////////////////////////////////////////////////////////////////////L1 = Bearish[1]L2 = xClose[1] < SDlw3L3 = BullishL4 = xClose > SDlw3CL = L1 and L2 and L3 and L4 and Not LongOnMarket//S1 = Bullish[1]S2 = xClose[1] > SDup3S3 = BearishS4 = xClose < SDup3CS = S1 and S2 and S3 and S4 and Not ShortOnMarket//IF CL ThenBUY 1 Contract at MarketENDIF//IF CS ThenSELLSHORT 1 Contract at MarketENDIF -
AuthorPosts
Find exclusive trading pro-tools on