Jump to content

thedriver

Members
  • Posts

    454
  • Joined

  • Last visited

  • Days Won

    4

Posts posted by thedriver

  1. thats the new one

     

    Hi atd post #8

    A new version with major improvements has been released. It would be great if someone is able to educate so more members here at II may benefit.

    Major improvements are:

    - More advanced trend indicator taking into account multiple time frames

    - Indication of retracements which are not part of the logic pattern. Without these indications you may get lost in overseeing price action and the market movement.

     

    Here is the uneducated file https://www.sendspace.com/file/cn97lt

     

    Admis has educated the previous version (see post 2).

     

    On behalf of others as well here at II: many thanks for educating

  2. Hi Again,

     

    Can a good sould here help us by transforming this TS Code into NT Code, this indicator is for scalping even with 1 tick charts. some one please!!!

     

    Thank you!

     

    The code is:

     

    {Scalper Buys and Sells 7/18/2007

    Written by Luis Gomez

    inspired by John Carters "Mastering the Trade"

    }

     

    inputs:

    buyColor(white),

    sellColor(blue),

    width(3);

    variables:

    highBarsAgo(1),

    possibleHighBarsAgo(1),

    possibleHigh(-2),

    hightoBeat(-1),

    barsSincePaint(1),

    lowBarsAgo(1),

    possibleLowBarsAgo(1),

    possibleLow(10000001),

    lowtoBeat(10000000),

    triggerPriceSell(-1),

    triggerPriceBuy(1000000),

    trend(1),

    _UP(1),

    _DOWN(-1),

    _ON(1),

    _OFF(-1);

     

     

    //************************* ************************* *

    //****** Find and plot the highest swing high *******

    //************************* ************************* *

     

    if trend = _UP then begin

    if swingHighBar(1,H,2,barsSi ncePaint+2) > -1 then begin

    possibleHighBarsAgo = swingHighBar(1,H,2,barsSi ncePaint+2);

    possibleHigh = H[possibleHighBarsAgo];

    end;

     

    if possibleHigh >= hightoBeat then begin

    highBarsAgo = possibleHighBarsAgo;

    hightoBeat = possibleHigh;

    triggerPriceSell = L[HighBarsAgo - 1];

    end;

     

    if C < triggerPriceSell and

    highest(high,highBarsAgo) < hightoBeat then begin

    plotpb[highBarsAgo](H[highBarsAgo],L[highBarsAgo],"",sellColor);

    alert("Scalper Sell");

    trend = _DOWN;

    barsSincePaint = highBarsAgo-1;

    hightoBeat = -1;

    lowtoBeat = 10000000;

    triggerPriceBuy = 10000000;

    triggerPriceSell = -1;

    highBarsAgo = 1;

    possibleHigh = -2;

    end;

     

    end;

     

    //************************* ************************* *

    //****** Find and plot the lowest swing low *********

    //************************* ************************* *

     

    if trend = _DOWN then begin

    if swingLowBar(1,L,2,barsSin cePaint+2) > -1 then begin

    possibleLowBarsAgo = swingLowBar(1,L,2,barsSin cePaint+2);

    possibleLow = L[possibleLowBarsAgo];

    end;

     

    if possibleLow <= lowtoBeat then begin

    lowBarsAgo = possibleLowBarsAgo;

    lowtoBeat = possibleLow;

    triggerPriceBuy = H[LowBarsAgo - 1];

    end;

     

    if C > triggerPriceBuy and

    lowest(L,lowBarsAgo) > lowtoBeat then begin

    plotpb[lowBarsAgo](H[lowBarsAgo],L[lowBarsAgo],"",buyColor);

    alert("Scalper Buy");

    trend = _UP;

    barsSincePaint = lowBarsAgo-1;

    possibleLow = 10000001;

    lowtoBeat = 10000000;

    hightoBeat = -1;

    triggerPriceBuy = 10000000;

    triggerPriceSell = -1;

    lowBarsAgo = 1;

    end;

     

    end;

     

    barsSincePaint = barsSincePaint+1;

    if trend = _UP then highBarsAgo = highBarsAgo + 1;

    if trend = _DOWN then lowBarsAgo = lowBarsAgo + 1;

    setPlotWidth(1,width);

     

    Hi try with this https://www.sendspace.com/file/9okx76

     

    copy the cs. file in your C:\Users\...\Documents\NinjaTrader 7\bin\Custom\Indicator and compile it

     

    enjoy

     

    regards

  3. Hi, from their website http://orderflowedge.com/methodology/

     

    ORDER FLOW DRIVES PRICE.

     

    and it’s important to realize that

     

    CHANGE IN ORDER FLOW PRECEDES CHANGE IN PRICE.

    Once you understand these principles you begin to realize how powerful it is to have tools in your trading arsenal which enable you to gauge the true supply and demand in the market.

     

    Not only with the Order Flow that’s occurring real time in the market but also the areas where supply and demand imbalance took place in the past!

     

    In fact the foundation of our metholdolgy is based on these two Core Concepts:

     

    1) We identify key price zones - areas where opportunity exists in the market.

     

    We predetermine exactly where the important price zones are located by identifying previous areas of supply and demand imbalance. These are areas in the market where the orders have already proven themselves to be…the areas where the smart money is trading.

    2) We read the real time OrderFlow information - when we see the market coming into our price zones we can effectively measure the real time buying and selling pressure in order to confirm trade entry.

    All of our trade entry locations are predetermined using specific price zones based on areas of previous supply/demand imbalance. We use trade location to our advantage by deciding exactly where in the market we want to conduct our business.

     

    We don’t put any pressure on ourselves to try and catch every random move….we’re not preoccupied with predicting where the market is going. Instead we prepare ourselves for opportunity.

    It’s a simple shift of focus…instead of relying on price based indicators our students quickly learn,

    that change in OrderFlow precedes change in price. We’ll show you how to recognize opportunity in the market by identifying what this change in the order flow looks like.

    Understanding current supply and demand conditions is the key to helping you trade with the order flow and not against it!

    1. WHERE to enter your trades…based on the important price zones.

    2. WHEN to execute your trades….according to real time OrderFlow conditions 3. HOW to manage your trades….profit and risk, based on Supply & Demand.

     

    here the blog with many videos http://orderflowedge.com/blog/?paged=1

    hope it's useful

    regard

  4. this is my CFT.zip and it should work well

     

    GM to all

     

    @atd I'm trying the rel 2.04.6 freedemo 14 days, your medicine are the same or old release??

    http://my.jetscreenshot.com/20438/20141112-kaff-120kb.jpg

    Thank you so much

     

     

    regards

  5. Hi, i have problem with Nof_toolkit. It is working nice, but i canot see any bidxask values on past footprint candles. Only present is displayed. Thank you for any help.

     

    Hi to all

    Nof Toolkit work only in live mode, if you want load the previous bid/ask contracts you need replay the previous days/sessions via Market Replay tool of Ninjatradrs.

     

    here many good videos https://www.youtube.com/user/tradingmagnet/videos

    regards

  6. "ps. I've checked it only with the NT connection and I don't even want to spend more time on that, so please don't ask me about any issues related with this software."

     

    Are you trying to annoy ADMIS? We have already lost one educator over this very thing. Can you not honor this simple request of his?

     

    W.

     

    Hi all and sorry for this, admis is very smart master member, I hope not to lose him and sorry again

    ragards

  7. ........

    https://www.sendspace.com/file/hf5fcp

    pw: known

     

     

    ps. I've checked it only with the NT connection and I don't even want to spend more time on that, so please don't ask me about any issues related with this software.

     

     

    Hi Admis, thank you for your share, but i have a problem with your medicine, i don't have any orderflow chart and no cumulative bid/ask delta for the divergence!!

     

    http://my.jetscreenshot.com/20438/20140730-rb66-245kb.jpg

     

    can you help me??

     

    Thank you in advanced

     

    Ps: if you a bit time for us can you try to get the 32 bit version too??

     

    thank you

×
×
  • Create New...