Jump to content

tybur0n

Members
  • Posts

    26
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Like
    tybur0n got a reaction from goldseeder in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  2. Like
    tybur0n got a reaction from FX_SuperTrader in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  3. Like
    tybur0n got a reaction from FXWallabie in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  4. Like
    tybur0n reacted to Stonecold69 in Order Flow Trading   
    Hi sillykiddo & tybur0n,
     
    I just checked and the link from post #82 is working fine - the real deal ;¬)
     
    Hope that helps,
     
    Stonecold
  5. Like
    tybur0n got a reaction from SKC in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  6. Like
    tybur0n got a reaction from jacson in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  7. Like
    tybur0n got a reaction from ravijj in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  8. Like
    tybur0n got a reaction from nikkola in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  9. Like
    tybur0n reacted to human18 in Forex.TSD advanced,elite indicator pack   
    macho7
     
    here you go
    http://www.4shared.com/rar/q_RhRvSa/tdi.html
  10. Like
    tybur0n reacted to udc in Ocean Theory indis from TSD elite   
    NMA for MT4
     
    Well, since no one seems to either have access to the advanced elite section of the TSD forum, or isn't willing to share, I started reprogramming Ocean Theory indicators from TradeStation to Metatrader myself, first one is NMA.
    I may do a couple more and that's it because the TradeStation code is annoying.
     
    Original NMA on TradeStation:
    http://img404.imageshack.us/img404/3062/nmatradestation.png
     
    NMA on Metatrader:
    http://img69.imageshack.us/img69/2483/nmametatrader.png
     
    Original size screenshots:
    http://img521.imageshack.us/img521/3062/nmatradestation.png
    http://img19.imageshack.us/img19/2483/nmametatrader.png
     
     
    For some reason I can't post an attachment so I just paste the code here:

    #property indicator_chart_window #property indicator_buffers 3 #property indicator_color1 Yellow #property indicator_color2 Gray #property indicator_color3 Gray extern int NMA_period = 40; extern bool Show_SD = true; extern int SD_len = 30; extern double SD_up = 2; extern double SD_dn = 2; double NMA[]; double SDup[]; double SDdn[]; int init() { string nmaname = "NMA(" + NMA_period + ")"; string sdname = "NMA_SD(" + SD_len + ")"; IndicatorShortName(nmaname); IndicatorBuffers(3); SetIndexBuffer(0, NMA); SetIndexLabel(0, nmaname); SetIndexBuffer(1, SDup); SetIndexLabel(1, sdname+"_up"); SetIndexBuffer(2, SDdn); SetIndexLabel(2, sdname+"_dn"); return(0); } int start() { int limit, i, ii, counted_bars = IndicatorCounted(); if(Bars <= MathMax(NMA_period, SD_len)) return(0); if(counted_bars < 0) counted_bars = 0; if(counted_bars > MathMax(NMA_period, SD_len)) limit = Bars - counted_bars; else limit = Bars - MathMax(NMA_period, SD_len) - 1; for(i = limit; i >= 0; i--) { double sum, abssum, ratio; sum = (MathLog(Close[i]) - MathLog(Close[i+1])) + (MathLog(Close[i+1]) - MathLog(Close[i+2])) * (MathSqrt(2)-1); for(ii = 2; ii < NMA_period; ii++) sum += (MathLog(Close[i+ii]) - MathLog(Close[i+ii+1])) * (MathSqrt(ii+1) - MathSqrt(ii)); abssum = MathAbs(sum); sum = 0; for(ii = 0; ii < NMA_period; ii++) sum += MathAbs(MathLog(Close[i+ii]) - MathLog(Close[i+ii+1])); if(sum != 0) ratio = abssum / sum; NMA[i] = NMA[i+1] + (Close[i] - NMA[i+1]) * ratio; if(Show_SD) { SDup[i] = NMA[i] + SD_up * iStdDev(Symbol(), Period(), SD_len, 0, 0, PRICE_CLOSE, i); SDdn[i] = NMA[i] - SD_dn * iStdDev(Symbol(), Period(), SD_len, 0, 0, PRICE_CLOSE, i); } } return(0); }
     
    The source code is also available for download here:
    http://pastebin.com/6iN4YdH5
     
     
    Please suggest which Ocean indi would be the most useful to reprogram to Metatrader.
  11. Like
    tybur0n got a reaction from for-ex in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  12. Like
    tybur0n got a reaction from Zeeshan Zia in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  13. Like
    tybur0n got a reaction from pyrron in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  14. Like
    tybur0n got a reaction from edyfals in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  15. Like
    tybur0n got a reaction from vladv in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  16. Like
    tybur0n got a reaction from mahdicivil81 in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  17. Like
    tybur0n got a reaction from waldorfxt in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  18. Like
    tybur0n got a reaction from mitch1713006137 in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  19. Like
    tybur0n got a reaction from novicetraders in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  20. Like
    tybur0n got a reaction from traderx4 in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  21. Like
    tybur0n got a reaction from GTA in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  22. Like
    tybur0n got a reaction from john1368 in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  23. Like
    tybur0n got a reaction from indo37 in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  24. Like
    tybur0n got a reaction from peterke in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
  25. Like
    tybur0n got a reaction from taipan in Forex.TSD advanced,elite indicator pack   
    http://www.multiupload.com/0P3AC09547
     
    pass:shareiscare
×
×
  • Create New...