Jump to content

propro

Members
  • Posts

    16
  • Joined

  • Last visited

Reputation Activity

  1. Like
    propro reacted to ⭐ fxwin in Warrior Trading course   
    Thanks to the original uploader:
     
    https://mega.nz/folder/wltizY6Y#byaus4g7IBRvTzR1XL1GKA
  2. Like
    propro reacted to rick1713006413 in (Req) H@wk3y3 MT4   
    Here you go Enjoy!
     
    https://anonfiles.com/file/aaf8023bbe3a06d4eb02df2dff87c1df
  3. Like
    propro reacted to luixpg in Multicharts   
    Multicharts 8.0 x32 bit version build 5620 - and x64 bit version build 5622 - and 100% working crack - and video tutorials for data feed setup -
    and installation instructions - total 918 Mb
     
    http://www.edisk.eu/download/91018/pack.zip_918MB.html
     
    you should download before the link expires
     
    enjoy!
  4. Like
    propro reacted to luixpg in Multicharts   
    Multicharts.NET 8.0 - 32 bit version build 5625 - and 64 bit version build 5626 - and 100% working crack
     
    http://www.multiupload.nl/HP15IBHT06
     
    enjoy!
  5. Like
    propro reacted to udc in Ocean Theory indis from TSD elite   
    Ocn_FastNMAvsNMA
     
    This is a little indi I wanted to make for a while. All what it does is showing a relative position of FastNMA compared to NMA.
     
    It may be useful for those who want to quickly see whether FastNMA is above or below NMA but for some reason don't want to have them in their main chart. For the lack of a better name I named it "FastNMAvsNMA". For BB maniacs I added the SD bands with typical features as previously seen on TV, you know, all the jazz.
     
    The following picture shows NMA and FastNMA (Ocn_NMAx indi, that is) in the main chart and 3x Ocn_FastNMAvsNMA indi with various settings.
     
    http://img819.imageshack.us/img819/3299/ocnfastnmavsnma.png
     

    // Ocn_FastNMAvsNMA version 1.00 #property copyright "NMA algorithm © jim sloman, for metatrader programmed by udc" #property link "[email protected]" #property indicator_separate_window #property indicator_buffers 4 #property indicator_color1 Magenta #property indicator_color2 Silver #property indicator_color3 Silver #property indicator_color4 Silver #property indicator_level1 0 #property indicator_levelcolor Gray #property indicator_levelstyle 2 extern int NMA_period = 40; extern int FastNMA_period = 40; extern int FastNMA_LB_min = 8; extern bool Show_SD = false; extern int SD_len = 30; extern double SD_up = 2; extern double SD_dn = 2; extern bool Show_SD_1line_only = false; extern bool Show_SD_3lines_up = true; extern bool Show_SD_3lines_dn = true; extern bool Show_SD_3lines_md = true; double FastNMAvsNMA[]; double SD[]; double SD2[]; double SD3[]; double NMA[]; double FastNMA[]; int init() { string name = "FastNMAvsNMA(" + NMA_period + ", " + FastNMA_period + ", " + FastNMA_LB_min + ")"; IndicatorShortName(name); IndicatorBuffers(6); SetIndexBuffer(0, FastNMAvsNMA); SetIndexLabel(0, name); SetIndexBuffer(1, SD); SetIndexBuffer(2, SD2); SetIndexBuffer(3, SD3); if(Show_SD_1line_only) { SetIndexLabel(1, "FastNMAvsNMA_SD(" + SD_len + ")"); SetIndexLabel(2, "unused"); SetIndexLabel(3, "unused"); } else { if(Show_SD_3lines_up) SetIndexLabel(1, "FastNMAvsNMA_SD_up(" + SD_len + ")"); else SetIndexLabel(1, "unused"); if(Show_SD_3lines_dn) SetIndexLabel(2, "FastNMAvsNMA_SD_dn(" + SD_len + ")"); else SetIndexLabel(2, "unused"); if(Show_SD_3lines_md) SetIndexLabel(3, "FastNMAvsNMA_SD_md(" + SD_len + ")"); else SetIndexLabel(3, "unused"); } SetIndexBuffer(4, NMA); SetIndexBuffer(5, FastNMA); return(0); } int start() { int limit, i, ii, counted_bars = IndicatorCounted()-1; int max = MathMax(NMA_period, FastNMA_period); double nmasum, nmaabssum, nmaratio, nmmnum, maxnmm, fastnmasum, fastnmaabssum, fastnmaratio, temp; bool nmadone, fastnmadone; if(Bars <= max) return(0); if(counted_bars < 0) counted_bars = 0; if(counted_bars > max) limit = Bars - counted_bars; else limit = Bars - max - 1; for(i = limit; i >= 0; i--) { if(i == Bars - max - 1) { NMA[i+1] = Close[i+1]; FastNMA[i+1] = Close[i+1]; } nmaratio = 0; maxnmm = 0; fastnmaratio = 0; int NMA_LB_max; for(ii = 1; ii <= FastNMA_period; ii++) { nmmnum = (MathLog(Close[i]) - MathLog(Close[i+ii])) / MathSqrt(ii); if(MathAbs(nmmnum) > maxnmm) { maxnmm = MathAbs(nmmnum); NMA_LB_max = ii; } } if(NMA_LB_max < FastNMA_LB_min) NMA_LB_max = FastNMA_LB_min; nmasum = (MathLog(Close[i]) - MathLog(Close[i+1])) + (MathLog(Close[i+1]) - MathLog(Close[i+2])) * (MathSqrt(2)-1); fastnmasum = nmasum; nmadone = false; fastnmadone = false; ii = 2; while( !(nmadone) || !(fastnmadone) ) { temp = (MathLog(Close[i+ii]) - MathLog(Close[i+ii+1])) * (MathSqrt(ii+1) - MathSqrt(ii)); if(ii >= NMA_period) nmadone=true; else nmasum += temp; if(ii >= NMA_LB_max) fastnmadone=true; else fastnmasum += temp; ii++; } nmaabssum = MathAbs(nmasum); fastnmaabssum = MathAbs(fastnmasum); nmasum = 0; fastnmasum = 0; nmadone = false; fastnmadone = false; ii = 0; while( !(nmadone) || !(fastnmadone) ) { temp = MathAbs(MathLog(Close[i+ii]) - MathLog(Close[i+ii+1])); if(ii >= NMA_period) nmadone=true; else nmasum += temp; if(ii >= NMA_LB_max) fastnmadone=true; else fastnmasum += temp; ii++; } if(nmasum != 0) nmaratio = nmaabssum / nmasum; if(fastnmasum != 0) fastnmaratio = fastnmaabssum / fastnmasum; NMA[i] = NMA[i+1] + (Close[i] - NMA[i+1]) * nmaratio; FastNMA[i] = FastNMA[i+1] + (Close[i] - FastNMA[i+1]) * fastnmaratio; FastNMAvsNMA[i] = FastNMA[i] - NMA[i]; } if(Show_SD) for(i = limit; i >= 0; i--) if(i < Bars - max - 1 - SD_len) { if(Show_SD_1line_only) { if(FastNMAvsNMA[i] == 0) SD[i] = 0; else if(FastNMAvsNMA[i] > 0) SD[i] = iBandsOnArray(FastNMAvsNMA, 0, SD_len, SD_up, 0, MODE_UPPER, i); else if(FastNMAvsNMA[i] < 0) SD[i] = iBandsOnArray(FastNMAvsNMA, 0, SD_len, SD_dn, 0, MODE_LOWER, i); } else { if(Show_SD_3lines_up) SD[i] = iBandsOnArray(FastNMAvsNMA, 0, SD_len, SD_up, 0, MODE_UPPER, i); if(Show_SD_3lines_dn) SD2[i] = iBandsOnArray(FastNMAvsNMA, 0, SD_len, SD_dn, 0, MODE_LOWER, i); if(Show_SD_3lines_md) SD3[i] = (iBandsOnArray(FastNMAvsNMA, 0, SD_len, SD_up, 0, MODE_UPPER, i)+ iBandsOnArray(FastNMAvsNMA, 0, SD_len, SD_dn, 0, MODE_LOWER, i) ) / 2; } } return(0); }
     
    Source code:
    http://pastebin.com/Yt7EkFbH
     
     
    Hopefully someone will find it useful.
  6. Like
    propro reacted to Danny in Share : 3nv310p3 pr0f!t $y$t3m   
    3nv310p3 pr0f!t $y$t3m
     
     
    from : xxx.3nv310p3pr0f!t$y$t3m.c0m
     
     
    Download : http://min.us/mVQoO33iS
     
    :)
    Good Luck
    Danny
  7. Like
    propro reacted to darkhawk in Fibonacci Toolbar   
    Otherwise, what is it?
    It is from the website you said, xxx.fibonaccimadeeasy.c0m, I downloaded it, then education it, and finally upload it.
    To make it work properly, your operating system language is English, or Regional and Language Options set to English.
     
    :-?
    Please forgive my bad English
  8. Like
    propro reacted to alansim in FXTS Forex Trading System   
    Edit: I have CLEAN UP the Indicators inside by REMOVING the DUPLICATED indicators and also Convert the Trading Strategy .Doc file into PDF Ebook....
     
    New Mirrors :)

    http://uploadmirrors.com/download/0TH9TWLN/Cleaned_Up_-_FXTS.rar Or http://www.mirrorcreator.com/files/1KXESLB3/Cleaned_Up_-_FXTS.rar_links
     
    Virustotal.com Detection ratio: 0 / 41

    https://www.virustotal.com/file/3dc03ac5a58f02b9ee7209740f42b03a4f1a8451a662b393a3a196618891dcff/analysis/1336228736/
  9. Like
    propro reacted to swoff1 in FXTS Forex Trading System   
    Manual
     
    http://www.sendspace.com/file/aij04m
  10. Like
    propro reacted to swoff1 in FXTS Forex Trading System   
    http://www.sendspace.com/file/wth6ke
  11. Like
    propro reacted to udc in Ocean Theory indis from TSD elite   
    NDX, NST, NXC et al.
     
    Three bounded Ocean indicators, the first two you already got, the third one is an improved version (thus "x" suffix) of the original with the option to mark zero hits.
     
    Original NDX, NST, NXC on TradeStation:
    http://img705.imageshack.us/img705/7306/ndxnstnxctradestation.png
     
    Ocn_NDX, Ocn_NST, Ocn_NXCx on Metatrader:
    http://img825.imageshack.us/img825/2768/ndxnstnxcmetatrader.png
     
    Original size screenshots:
    http://img802.imageshack.us/img802/7306/ndxnstnxctradestation.png
    http://img402.imageshack.us/img402/2768/ndxnstnxcmetatrader.png
     
     
    However, you don't actually need these three indis at all, because I've combined them all into a single Ocn_NDXNSTNXCx indi, which can:

    show NDX, NST, NXC
    show NXC zero hits
    show a common NDX&NST's NMA
    turn on/off each of these 5 elements individually (so you can for example show NDX and NXC's zero hits without even showing NXC itself)

     
    As for the NMA, you have 4 options there to adjust it:

    the period of NMA
    you can choose whether it should be regular or fast NMA
    if fast then what would be the minimal lookback
    pre-smoothing the data before entering NMA

    The default settings is: period 20, regular NMA, pre-smoothing 1 (means no smoothing). As I mentioned I don't know what should be the default settings, I don't even exactly know how this NMA should be calculated from NDX&NST, however after countless studying the videos and testing and trying I found this settings as somewhat, more or less, give or take, remotely similar to what they have. No guarantee (most probably it's not right) :)
     
    Also, I have done another few changes:

    Ocn_NMA_Price_Osc improved into Ocn_NMA_Price_Oscx: added all SD band lines
    all indis with SD band lines got a third SD band line in the middle, optional of course
    when zero hit was detected the SD bands were zeroed; this is now optional and can be turned on/off
    all indis have versions now

     
    Now the full list of Ocean Classic library (worth $4,995.00) includes:

    Ocn_NMAx
    Ocn_NMA_Price_Oscx
    Ocn_NMA_SD_Band_Osc (orig, keeping this version for compatibility because the improved one got a shifted scale)
    Ocn_NMA_SD_Band_Oscx
    Ocn_NMA_SD_Band_Width (orig)
    Ocn_NMM_X-Ray_1 (orig)
    Ocn_NMM_X-Ray_2 (orig, didn't get any idea what to improve on these last three)
    Ocn_NMM_Ocean_Indexx
    Ocn_NMMx
    Ocn_NMM_MACDx
    Ocn_NMM_ROCx
    Ocn_NMRx
    Ocn_NMSx
    Ocn_NMCx
    Ocn_NMC2x
    Ocn_NDX
    Ocn_NST
    Ocn_NXCx
    Ocn_NDXNSTNXCx

     
    Note: I didn't implement all original options and features, namely those functions showing historical overbought/oversold levels etc. They never demonstrated nor commented it in any video so I just haven't found it worth an effort. It can be implemented if needed, though.
     
    http://uloz.to/xeTvGZd/ocn-classic-7z
     
     
    digian: maybe you could make again the "full bundle" package?
     
    Now it's finally time for BTX/STX.
  12. Like
    propro reacted to udc in Ocean Theory indis from TSD elite   
    resume
     
    Ok, so what I have actually done:

    renamed NMA_Price_Osc to Ocn_NMA_Price_Osc
    renamed NMA_SD_Band_Width to Ocn_NMA_SD_Band_Width
    renamed NMM_X-Ray_1 to Ocn_NMM_X-Ray_1
    renamed NMM_X-Ray_2 to Ocn_NMM_X-Ray_2
    renamed NMA_SD_Band_Osc to Ocn_NMA_SD_Band_Osc (my improved version has different scale so I am keeping the original version too)
    improved NMA_SD_Band_Osc into Ocn_NMA_SD_Band_Oscx
    improved NMM_Ocean_Index into Ocn_NMM_Ocean_Indexx
    improved NMM_ROC into Ocn_NMM_ROCx
    improved NMR into Ocn_NMRx
    improved NMA and Fast_NMA and combined both into a single Ocn_NMAx
    improved NMC and NMC_with_Ocn_MAs and combined both into a single Ocn_NMCx
    improved NMC2 and NMC2_with_Ocn_MAs and combined both into a single Ocn_NMC2x
    improved NMM and NMM_with_Ocn_MAs and combined both into a single Ocn_NMMx
    improved NMM_MACD and NMM_MACD_with_Ocn_MAs and combined both into a single Ocn_NMM_MACDx
    improved NMS and NMS_with_Ocn_MAs and combined both into a single Ocn_NMSx

     
    If you did the same you would end up with 15 indicators. If not, you can download them from here:
    http://uloz.to/xTwJmMJ/ocn-7z
     
    Now I can finally get to NDX, NST and NXC, and then see about BTX/STX buddies.
  13. Like
    propro reacted to kraven in Kravens True Trading Tactics   
    I post this trading system i've been using for a while now with good results. I put it on FF simply because it's much easier to post pic's etc..
     
    http://www.forexfactory.com/showthread.php?t=340503
     
    It's a simple system, works on price action reversals. i like it on the daily and 1hr TF as it's fairly stress free with the potential for good R:R. Basicaly i posted it for people who are not getting very far with there current systems, try it and give it all your attention for 2 weeks and see how you go. Enjoy
  14. Like
    propro reacted to niftymover in SHARE..MY CRISTMAST GIFT TO ALL INDO FRIENDS (Sentient Trader CRACKED)..enjoy   
    SHARE..MY CRISTMAST GIFT TO ALL INDO FRIENDS (Sentient Trader CRACKED)..enjoy
     
    http://img861.imageshack.us/img861/2347/kkkkkkx.jpg
     
    download and enjoyyyyyyyyyyyyyyy:))
    >:)>:)
     
    http://www.multiupload.com/HV0CO5TEB8
     
     
    this is not an mt4 virson its stand alone software and it need metastock data to perform
     
    now how to install it..
     
    simply install setup then after installation just copy client.dll in to installation folder thats it.........
     
    enjoy
  15. Like
    propro got a reaction from alansim in Trader Rick – eFutureVision – 3X Trend and 930 Method   
    In these videos Trader Rick explains 2 strategies, the 3X Trend Method and the 930 method.
     
    Whether you trade futures, forex, or stocks, no matter what timeframe, the 3X trend method is a solid approach to taking advantage of a trend moves and trend continuations.
     
    Contents:
    3x Live Trade.flv
     
    Strategies:
    3X Trend Method.flv
    3X Ensign Template.mht
    3X Trend Method.mht
    930 method.flv
    930training1.flv
    Advanced 3X Training.flv
    The emini Globex Fib Extension Methodology.flv
     
    MT4 Files:
    9-30.tpl
    AllStochastics_colored_sig.mq4
    AllStochastics_colored.mq4
    Keltner_ATR_Bands.mq4
     
    More info here
    http://www.traderszone.com/seminars-webinars/8135-trader-rick-efuturevision-3x-trend-930-method.html
  16. Like
    propro reacted to AnnB in Trader Rick – eFutureVision – 3X Trend and 930 Method   
    Here is the link
    http://hotfile.com/dl/136001327/12da58d/3X_Trend_and_930_Method.rar.html
×
×
  • Create New...