Jump to content

kolikol

Members
  • Posts

    14
  • Joined

  • Last visited

Reputation Activity

  1. Like
    kolikol reacted to udc in Ocean Theory indis from TSD elite   
    NMM_ROC for MT4
     
    NMM_ROC - almost missed this one. Should be the last one from the NMM family.
     
     
    Original NMM_ROC on TradeStation:
    http://img72.imageshack.us/img72/5621/nmmroctradestation.png
     
    NMM_ROC on Metatrader:
    http://img217.imageshack.us/img217/3605/nmmrocmetatrader.png
     
    Original size screenshots:
    http://img18.imageshack.us/img18/5621/nmmroctradestation.png
    http://img40.imageshack.us/img40/3605/nmmrocmetatrader.png
     

    #property indicator_separate_window #property indicator_buffers 2 #property indicator_color1 Magenta #property indicator_color2 Silver #property indicator_level1 0 #property indicator_levelcolor Gray #property indicator_levelstyle 2 extern int NMM_ROC_period = 40; extern int NMM_ROC_LB = 3; extern int NMM_ROC_AvgLen = 3; extern bool Show_SD = true; extern int SD_len = 30; extern double SD_up = 2; extern double SD_dn = 2; double NMM_ROC[]; double SD[]; double NMM[]; double NMM_ROCx[]; int init() { string nmmrocname = "NMM_ROC(" + NMM_ROC_period + ", " + NMM_ROC_LB + ", " + NMM_ROC_AvgLen + ")"; string sdname = "NMM_ROC_SD(" + SD_len + ")"; IndicatorShortName(nmmrocname); IndicatorBuffers(4); SetIndexBuffer(0, NMM_ROC); SetIndexLabel(0, nmmrocname); SetIndexBuffer(1, SD); SetIndexLabel(1, sdname); SetIndexBuffer(2, NMM); SetIndexBuffer(3, NMM_ROCx); return(0); } int start() { int limit, i, ii, counted_bars = IndicatorCounted(); if(Bars <= NMM_ROC_period + NMM_ROC_LB + NMM_ROC_AvgLen) return(0); if(counted_bars < 0) counted_bars = 0; if(counted_bars > NMM_ROC_period) limit = Bars - counted_bars; else limit = Bars - NMM_ROC_period - 1; for(i = limit; i >= 0; i--) { double nmm2 = 0; for(ii = 1; ii <= NMM_ROC_period; ii++) nmm2 += (MathLog(Close[i]) - MathLog(Close[i+ii])) / MathSqrt(ii); NMM[i] = (nmm2 / NMM_ROC_period) * 1000; } for(i = limit; i >= 0; i--) if(i < Bars - NMM_ROC_period - 1 - NMM_ROC_LB) NMM_ROCx[i] = NMM[i] - NMM[i+NMM_ROC_LB]; for(i = limit; i >= 0; i--) if(i < Bars - NMM_ROC_period - 1 - NMM_ROC_LB - NMM_ROC_AvgLen) { double WtdSum = 0; for(ii = 0; ii < NMM_ROC_AvgLen; ii++) WtdSum += (NMM_ROC_AvgLen - ii) * NMM_ROCx[i+ii]; NMM_ROC[i] = WtdSum / ((NMM_ROC_AvgLen + 1) * NMM_ROC_AvgLen * 0.5); } if(Show_SD) for(i = limit; i >= 0; i--) if(i < Bars - NMM_ROC_period - 1 - NMM_ROC_LB - NMM_ROC_AvgLen - SD_len) { if(NMM_ROC[i] == 0) SD[i] = 0; else if(NMM_ROC[i] > 0) SD[i] = iBandsOnArray(NMM_ROC, 0, SD_len, SD_up, 0, MODE_UPPER, i); else if(NMM_ROC[i] < 0) SD[i] = iBandsOnArray(NMM_ROC, 0, SD_len, SD_dn, 0, MODE_LOWER, i); } return(0); }
     
    The source code is also available for download here:
    http://pastebin.com/eZn3fywg
  2. Like
    kolikol reacted to udc in Ocean Theory indis from TSD elite   
    NMC for MT4
     
    Long awaited NMC :)
     
     
    Original NMC on TradeStation:
    http://img849.imageshack.us/img849/961/nmctradestation.png
     
    NMC on Metatrader:
    http://img341.imageshack.us/img341/1166/nmcmetatrader.png
     
    Original size screenshots:
    http://img252.imageshack.us/img252/961/nmctradestation.png
    http://img528.imageshack.us/img528/1166/nmcmetatrader.png
     

    #property indicator_separate_window #property indicator_buffers 2 #property indicator_color1 Magenta #property indicator_color2 Silver #property indicator_level1 0 #property indicator_levelcolor Gray #property indicator_levelstyle 2 extern int NMC_period = 40; extern bool Show_SD = true; extern int SD_len = 30; extern double SD_up = 2; extern double SD_dn = 2; double NMC[]; double SD[]; int init() { string nmcname = "NMC(" + NMC_period + ")"; string sdname = "NMC_SD(" + SD_len + ")"; IndicatorShortName(nmcname); IndicatorBuffers(2); SetIndexBuffer(0, NMC); SetIndexLabel(0, nmcname); SetIndexBuffer(1, SD); SetIndexLabel(1, sdname); return(0); } int start() { int limit, i, ii, counted_bars = IndicatorCounted(); if(Bars <= NMC_period) return(0); if(counted_bars < 0) counted_bars = 0; if(counted_bars > NMC_period) limit = Bars - counted_bars; else limit = Bars - NMC_period - 1; for(i = limit; i >= 0; i--) { double nmm, nmr, nmm2 = 0, nmr2 = 0, avg, sign; for(ii = 1; ii <= NMC_period; ii++) { nmm2 += (MathLog(Close[i]) - MathLog(Close[i+ii])) / MathSqrt(ii); nmr2 += (MathLog(Close[i+ii-1]) - MathLog(Close[i+ii])) * (MathSqrt(ii) - MathSqrt(ii-1)); } nmm = (nmm2 / NMC_period) * 1000; nmr = nmr2 * 1000; avg = ((MathAbs(nmm) * nmr) + (MathAbs(nmr) * nmm)) / 2; if(avg > 0) sign = 1; else if(avg < 0) sign = -1; else sign = 0; NMC[i] = sign * MathSqrt(MathAbs(avg)); } if(Show_SD) for(i = limit; i >= 0; i--) if(i < Bars - NMC_period - 1 - SD_len) { if(NMC[i] == 0) SD[i] = 0; else if(NMC[i] > 0) SD[i] = iBandsOnArray(NMC, 0, SD_len, SD_up, 0, MODE_UPPER, i); else if(NMC[i] < 0) SD[i] = iBandsOnArray(NMC, 0, SD_len, SD_dn, 0, MODE_LOWER, i); } return(0); }
     
    The source code is also available for download here:
    http://pastebin.com/mhf0Utpv
  3. Like
    kolikol reacted to udc in Ocean Theory indis from TSD elite   
    NMC2 for MT4
     
    NMC2.
     
    While NMC is calculated from NMM and NMR, NMC2 is calculated from NMS and either NMM or NMR, so you have two possible choices here.
    To choose which one you want, set the option "Use_NMR_instead_NMM" either to "true" (for calculation using NMS and NMR) or to "false" (for calculation using NMS and NMM). Which variant was chosen can be then seen in the upper left corner of the indicator window.
     
     
    Original NMC2 on TradeStation:
    http://img337.imageshack.us/img337/87/nmc2tradestation.png
     
    NMC2 on Metatrader:
    http://img220.imageshack.us/img220/1598/nmc2metatrader.png
     
    Original size screenshots:
    http://img210.imageshack.us/img210/87/nmc2tradestation.png
    http://img11.imageshack.us/img11/1598/nmc2metatrader.png
     

    #property indicator_separate_window #property indicator_buffers 2 #property indicator_color1 Magenta #property indicator_color2 Silver #property indicator_level1 0 #property indicator_levelcolor Gray #property indicator_levelstyle 2 extern int NMC2_period = 40; extern bool Use_NMR_instead_NMM = false; extern bool Show_SD = true; extern int SD_len = 30; extern double SD_up = 2; extern double SD_dn = 2; double NMC2[]; double SD[]; int init() { string whichone = "NMM"; if(Use_NMR_instead_NMM) whichone = "NMR"; string nmc2name = "NMC2(" + NMC2_period + ", using " + whichone + ")"; string sdname = "NMC2_SD(" + SD_len + ")"; IndicatorShortName(nmc2name); IndicatorBuffers(2); SetIndexBuffer(0, NMC2); SetIndexLabel(0, nmc2name); SetIndexBuffer(1, SD); SetIndexLabel(1, sdname); return(0); } int start() { int limit, i, ii, counted_bars = IndicatorCounted(); if(Bars <= NMC2_period) return(0); if(counted_bars < 0) counted_bars = 0; if(counted_bars > NMC2_period) limit = Bars - counted_bars; else limit = Bars - NMC2_period - 1; for(i = limit; i >= 0; i--) { double nms, nmm, nmr, nms2 = 0, nmm2 = 0, nmr2 = 0, whichone, avg, sign; for(ii = 1; ii <= NMC2_period; ii++) { double oLRSlope = 0, SumXY = 0, SumY = 0, SumX, SumXSqr, Divisor; if(ii > 1) { SumX = ii * (ii - 1) * 0.5; SumXSqr = ii * (ii - 1) * (2 * ii - 1) * 1/6; Divisor = (SumX * SumX) - ii * SumXSqr; for(int iii = 0; iii < ii; iii++) { SumXY += iii * MathLog(Close[i+iii]); SumY += MathLog(Close[i+iii]); } oLRSlope = (ii * SumXY - SumX * SumY) / Divisor; } nms2 += oLRSlope * MathSqrt(ii); nmm2 += (MathLog(Close[i]) - MathLog(Close[i+ii])) / MathSqrt(ii); nmr2 += (MathLog(Close[i+ii-1]) - MathLog(Close[i+ii])) * (MathSqrt(ii) - MathSqrt(ii-1)); } nms = nms2 * 100; nmm = (nmm2 / NMC2_period) * 1000; nmr = nmr2 * 1000; if(Use_NMR_instead_NMM) whichone = nmr; else whichone = nmm; avg = ((MathAbs(nms) * whichone) + (MathAbs(whichone) * nms)) / 2; if(avg > 0) sign = 1; else if(avg < 0) sign = -1; else sign = 0; NMC2[i] = sign * MathSqrt(MathAbs(avg)); } if(Show_SD) for(i = limit; i >= 0; i--) if(i < Bars - NMC2_period - 1 - SD_len) { if(NMC2[i] == 0) SD[i] = 0; else if(NMC2[i] > 0) SD[i] = iBandsOnArray(NMC2, 0, SD_len, SD_up, 0, MODE_UPPER, i); else if(NMC2[i] < 0) SD[i] = iBandsOnArray(NMC2, 0, SD_len, SD_dn, 0, MODE_LOWER, i); } return(0); }
     
    The source code is also available for download here:
    http://pastebin.com/KuTsg81S
  4. Like
    kolikol reacted to Jay007 in (SHARE) - Market Volume ver. 1.3   
    http://www.2shared.com/file/qnXyxASL/Market_Volume_ver_13.html
    Found this indicator, might be interesting for traders who use VSA, the indicator as they said take volume data from FUTURES from platform think or swim, check the screen shots.
    Thanks,
    Jay
     
    http://i42.tinypic.com/1zqcw75.jpg
     
    http://i42.tinypic.com/eknx93.jpg
  5. Like
    kolikol reacted to xard777 in Forex.TSD advanced,elite indicator pack   
    re indicator
     
    Found this indicator on the net if anyone is interested...
     
    http://www.mediafire.com/?4r28kgh9rsiah1b
     
    Xard777
  6. Like
    kolikol reacted to Danny in Forex.TSD advanced,elite indicator pack   
    Found this on the Net...
     
    Elite Indicators + Screens
     
    http://www.onlinedisk.ru/file/841703
     
    Password : A1ex
  7. Like
    kolikol reacted to chandu1713006579 in Forex.TSD advanced,elite indicator pack   
    hxxp://[email protected]/?ogr630mh575houa
  8. Like
    kolikol reacted to chandu1713006579 in Forex.TSD advanced,elite indicator pack   
    Hello hermes,are you looking for this one?
     
    hxxp://[email protected]/?fizwdrjhldiakz8
  9. Like
    kolikol reacted to bamik in $5,700 Ebay Forex System Auction   
    For my friends:

    Best Regards
  10. Like
    kolikol got a reaction from marblaa in req: FOREX Marvel indicators ????   
    Hi, Traders
    How do you rate this indicators : Marvel Volume Indicator --- Marvel Volume Indicator ©.ex4
    Marvel Global Trend Indicator --- Marvel Global Trend Indicator ©.ex4
     
    http://[email protected]/
     
    http://[email protected]/rar/mGRKLms-/[email protected]
     
    Thanks :D:D
  11. Like
    kolikol got a reaction from toddanderson in req: FOREX Marvel indicators ????   
    Hi, Traders
    How do you rate this indicators : Marvel Volume Indicator --- Marvel Volume Indicator ©.ex4
    Marvel Global Trend Indicator --- Marvel Global Trend Indicator ©.ex4
     
    http://[email protected]/
     
    http://[email protected]/rar/mGRKLms-/[email protected]
     
    Thanks :D:D
  12. Like
    kolikol got a reaction from Sesshoumaru in req: FOREX Marvel indicators ????   
    Hi, Traders
    How do you rate this indicators : Marvel Volume Indicator --- Marvel Volume Indicator ©.ex4
    Marvel Global Trend Indicator --- Marvel Global Trend Indicator ©.ex4
     
    http://[email protected]/
     
    http://[email protected]/rar/mGRKLms-/[email protected]
     
    Thanks :D:D
  13. Like
    kolikol got a reaction from zidainis in req: FOREX Marvel indicators ????   
    Hi, Traders
    How do you rate this indicators : Marvel Volume Indicator --- Marvel Volume Indicator ©.ex4
    Marvel Global Trend Indicator --- Marvel Global Trend Indicator ©.ex4
     
    http://[email protected]/
     
    http://[email protected]/rar/mGRKLms-/[email protected]
     
    Thanks :D:D
  14. Like
    kolikol reacted to dk1aussie in (REQ) ForexSoftwareShop   
    I bought the indicator FSS_Zig-Zag and Red_Bull is exactly right BBands_stop with an added line to each arrow
     
    ForexSoftwareShop site is a complete scam .... the indicator below
     
    hxxp://xxx.multiupload.com/7XQYA6RK6U
  15. Like
    kolikol got a reaction from KING_BUNDA in SYNCHR0 Tr@de Softw@re -500$-   
    My gift for all. :):):)
     
    SYNCHR0 Tr@de Softw@re
    price-500$
    WWW-http://f0rex-expert-advisor.c0m/[email protected]
     
    http://mir.cr/3F90FU3F
  16. Like
    kolikol got a reaction from cazador in SYNCHR0 Tr@de Softw@re -500$-   
    My gift for all. :):):)
     
    SYNCHR0 Tr@de Softw@re
    price-500$
    WWW-http://f0rex-expert-advisor.c0m/[email protected]
     
    http://mir.cr/3F90FU3F
  17. Like
    kolikol got a reaction from yoske in SYNCHR0 Tr@de Softw@re -500$-   
    My gift for all. :):):)
     
    SYNCHR0 Tr@de Softw@re
    price-500$
    WWW-http://f0rex-expert-advisor.c0m/[email protected]
     
    http://mir.cr/3F90FU3F
  18. Like
    kolikol got a reaction from learningfx in SYNCHR0 Tr@de Softw@re -500$-   
    My gift for all. :):):)
     
    SYNCHR0 Tr@de Softw@re
    price-500$
    WWW-http://f0rex-expert-advisor.c0m/[email protected]
     
    http://mir.cr/3F90FU3F
  19. Like
    kolikol got a reaction from Billy1713006094 in SYNCHR0 Tr@de Softw@re -500$-   
    My gift for all. :):):)
     
    SYNCHR0 Tr@de Softw@re
    price-500$
    WWW-http://f0rex-expert-advisor.c0m/[email protected]
     
    http://mir.cr/3F90FU3F
  20. Like
    kolikol got a reaction from serhan in SYNCHR0 Tr@de Softw@re -500$-   
    My gift for all. :):):)
     
    SYNCHR0 Tr@de Softw@re
    price-500$
    WWW-http://f0rex-expert-advisor.c0m/[email protected]
     
    http://mir.cr/3F90FU3F
  21. Like
    kolikol got a reaction from ognenyjwolf in SYNCHR0 Tr@de Softw@re -500$-   
    My gift for all. :):):)
     
    SYNCHR0 Tr@de Softw@re
    price-500$
    WWW-http://f0rex-expert-advisor.c0m/[email protected]
     
    http://mir.cr/3F90FU3F
  22. Like
    kolikol got a reaction from btrack77 in SYNCHR0 Tr@de Softw@re -500$-   
    My gift for all. :):):)
     
    SYNCHR0 Tr@de Softw@re
    price-500$
    WWW-http://f0rex-expert-advisor.c0m/[email protected]
     
    http://mir.cr/3F90FU3F
  23. Like
    kolikol got a reaction from bonten in SYNCHR0 Tr@de Softw@re -500$-   
    My gift for all. :):):)
     
    SYNCHR0 Tr@de Softw@re
    price-500$
    WWW-http://f0rex-expert-advisor.c0m/[email protected]
     
    http://mir.cr/3F90FU3F
  24. Like
    kolikol got a reaction from jtv in SYNCHR0 Tr@de Softw@re -500$-   
    My gift for all. :):):)
     
    SYNCHR0 Tr@de Softw@re
    price-500$
    WWW-http://f0rex-expert-advisor.c0m/[email protected]
     
    http://mir.cr/3F90FU3F
  25. Like
    kolikol got a reaction from ⭐ musketeer in SYNCHR0 Tr@de Softw@re -500$-   
    My gift for all. :):):)
     
    SYNCHR0 Tr@de Softw@re
    price-500$
    WWW-http://f0rex-expert-advisor.c0m/[email protected]
     
    http://mir.cr/3F90FU3F
×
×
  • Create New...