KBrain System

Finally after a long time I am posting another system. I have named it KBrain. This is based on the concepts of the Brain Trend system for Metatrader. This is straight off the drawing board. I am still to do extensive testing. This is also a stop and reverse system. Please check it out. Please report bugs and post your valuable comments so that we can improve the same and finally come out with a nice system.


8 Comments:

  1. Debdulal said...
    Dear Mr. Karthik,
    Thank you very much for this wonderful system for Amibroker.
    The Problem I am facing with this system is that I can't back test it in amibroker.Neither its showing any error nor gives any result after back testing.
    Please help.
    Debdulal Bhattacharyya
    debdulal.bh@gmail.com
    ~~Manish~~ said...
    Karthik, happen to come across your blog, just thought of saying you hello. i been trading in US market as intraday trader since last 1 year with part success.
    have been trying to develop a good Stop system without much success.
    i have experimented with various paid/self made system in last 1-2 year. add me in YIM if you use.. may be we can chat sometime & share our exp.. manishkachchhara (at) yahoo (dot) come
    Ankit Garg said...
    Mr Karthik,
    I tried using this system on Ami. But the representation is much different from that shown in ur charts here. What I can see in a seperate window are kind of OHLC bars.
    Tell me if and what am I doing wrong.
    SATYAM said...
    Dear Karthik , let me first thank you for the effort you have put in irrespective of the so called return of the particular. And then let me know you that this is quite amazingly done system I have ever come through. I am a hardcore nifty intra day trader with some scratchy concept on Elliot and FIbs. But after back testing your system i really feel this is truly out of the world. As I just use Amibroker to at some systems/indicators not possible in other SW, but I am a hardcore Metastock user. As I don't have any idea on AFL coding , but I have incorporated one thing to negate the noises. I am explaining it below. Before that I feel it's important to say I have done this only on NIFTY future intra day trading and back tested it on every time frame.

    INTERPRETATION OF KBRAIN:
    BESIDE THE SYSTEM I HAVE GIVEN IMPORTANCE TO ADX AND +DI & -DI SPREAD.
    1) ALL BUY SIGNAL IS VALID WHEN + DI IS ABOVE.
    2)SELL SIGNAL IS VALID WHEN -DI IS ABOVE.
    It means we'll take a buy trade generated on KBRAIN when +DI is above -DI along with and vice-versa.
    Period converted to 10 is also doing good in that case.
    I am giving my feedback as I felt this is a real serious system you have produced for us, and want your response about the modification I have made, If you find I am talking any sense, I feel it can really help all of us by negating whipsaws on this fantastic system.
    Waiting for your kind response. I have saved charts PIC with system and ADX along with , if you wanna have a look please add me in below id:
    satyamsit (at)ymail dot com (type full while adding).
    Thank you for your help once again. We are grateful to you and feel lucky if can be slightest & smallest part of your invention. Thank you. Regards,

    -Satyam Sit
    Unknown said...
    Dear Mr. Karthik,
    Thanks a lot for such a nice system.
    Actually I was looking at Tata Motors chart using KBrain system. Let's say if the price on 8th aug. 2009 closes below your support line it should have generated sell signal
    Is this my assumption correct ?

    I mean say we should reverse once close goes below your support line /stop loss line ?
    regards,
    Hitesh
    Unknown said...
    Ankit,

    To get similar graph, right click on the window where you see OHLC bars and change parameters values to 'yes'... hope this helps
    Unknown said...
    I have added following code in your K brain AFL to run optimization of PERIOD

    Code:

    "Period = Optimize("Period",14,6,20,1); "

    but probably I have done some mistake because I am not getting the desired result.
    I am getting same profit for all periods from 6 to 20.
    Please correct me so that i can run optimization for periods of K brain AFL
    Ashok Chawla said...
    Dear Mr Karthik,
    First let me heartily thank you for this fabulous system developed by you.
    I am facing a problem with the system while doing scan and getting following error messages -

    }
    //=============================SYSTEM======================================
    Mycolor=IIf(p=
    -------------^
    Error 29.
    Variable 'p' used without having been initialized.


    //=============================SYSTEM======================================
    Mycolor=IIf(p==1,colorLime,IIf(p=
    --------------------------------^
    Error 29.
    Variable 'p' used without having been initialized.

    //=============================SYSTEM======================================
    Mycolor=IIf(p==1,colorLime,IIf(p==2,colorRed,colorBlue));
    PlotOHLC( Open, High, Low, Close, "", Mycolor, styleBar| styleThick );
    PlotShapes( shapeCircle* (bts AND tm=
    ------------------------------------^
    Error 29.
    Variable 'tm' used without having been initialized.

    =================================
    Mycolor=IIf(p==1,colorLime,IIf(p==2,colorRed,colorBlue));
    PlotOHLC( Open, High, Low, Close, "", Mycolor, styleBar| styleThick );
    PlotShapes( shapeCircle* (bts AND tm==1 AND Ref(tm,-1)==2),colorTurquoise, 0, bstop,
    -----------------------------------------------------------------------------------^
    Error 29.
    Variable 'bstop' used without having been initialized.

    If(p==1,colorLime,IIf(p==2,colorRed,colorBlue));
    PlotOHLC( Open, High, Low, Close, "", Mycolor, styleBar| styleThick );
    PlotShapes( shapeCircle* (bts AND tm==1 AND Ref(tm,-1)==2),colorTurquoise, 0, bstop, 0 );
    PlotShapes( shapeCircle* (bts AND tm=
    ------------------------------------^
    Error 29.
    Variable 'tm' used without having been initialized.

    ;
    PlotOHLC( Open, High, Low, Close, "", Mycolor, styleBar| styleThick );
    PlotShapes( shapeCircle* (bts AND tm==1 AND Ref(tm,-1)==2),colorTurquoise, 0, bstop, 0 );
    PlotShapes( shapeCircle* (bts AND tm==2 AND Ref(tm,-1)==1), colorCustom12, 0, sstop,
    -----------------------------------------------------------------------------------^
    Error 29.
    Variable 'sstop' used without having been initialized.

    tShapes( shapeCircle* (bts AND tm==1 AND Ref(tm,-1)==2),colorTurquoise, 0, bstop, 0 );
    PlotShapes( shapeCircle* (bts AND tm==2 AND Ref(tm,-1)==1), colorCustom12, 0, sstop, 0 );
    PlotShapes( IIf(btst AND p==1,shapeSmallCircle,Null), colorTurquoise,0,bstop,
    ----------------------------------------------------------------------------^
    Error 29.
    Variable 'bstop' used without having been initialized.

    I tried my best to resolve but couldn't get succeeded,kindly do the needful.
    Thanking you in anticipation.

    Regards
    Ashok Chawla
    ashokchawla58@hotmail.com

Post a Comment



Newer Post Older Post Home