Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/25/24 in all areas

  1. https://www.sendspace.com/file/9gb7tq
    1 point
  2. If there is no Function: BollingerBand in Multicharts, I will add it in the code ------------------------------------------------------------------------------------------------ Inputs: bollingerLengths(50),liqLength(50),rocCalcLength(30); Vars: upBand(0),dnBand(0),liqDays(50),rocCalc(0); upBand = BollingerBand(Close,bollingerLengths,1.25); dnBand = BollingerBand(Close,bollingerLengths,-1.25); rocCalc = Close - Close[rocCalcLength-1]; {remember to subtract 1} if(MarketPosition <> 1 and rocCalc > 0) then Buy("BanditBuy")tomorrow upBand stop; if(MarketPosition <>-1 and rocCalc < 0) then SellShort("BanditSell") tomorrow dnBand stop; if(MarketPosition = 0) then liqDays = liqLength; if(MarketPosition <> 0) then begin liqDays = liqDays - 1; liqDays = MaxList(liqDays,10); end; if(MarketPosition = 1 and barssinceentry>=6 and Average(Close,liqDays) < upBand) then Sell("Long Liq") tomorrow Average(Close,liqDays) stop; if(MarketPosition = -1 and barssinceentry>=6 and Average(Close,liqDays) > dnBand) then BuyToCover("Short Liq") tomorrow Average(Close,liqDays) stop;
    1 point
  3. All of the links are now working. enjoy Mega Links Enjoy Anton Kreil - Professional Trading Masterclass Instutrade (PTM) Link: https://mega.nz/#!eYVGiIwR!By_lkT1mJfpQ3UroDqTNZeTRZosn50xL99yPh378Cio Anton Kreil - Professional Option Trading Masterclass (POTM) Link: https://mega.nz/#!qFM1nAhI!C7VT-giyQckFhzEfkDAHreAuXfsaJHbh8rq0fN4f3y8 Anton Kreil - Professional FOREX Trading Masterclass (PFTM) Link: https://mega.nz/file/nREEzSYa#Ht0TcWxgnNglT2qwvestjC2S8T-5Chi23rnCRfrcycE Anton Kreil - Professional FOREX Trading Masterclass (PFTM) (Full Video 18) Only Link: https://mega.nz/file/aBVkUSCK#HjoIWEh_oDRCFkIuR-ifRB02SGa_9tAt5JpUMqT5Eyw
    1 point
×
×
  • Create New...