Jump to content

freemenn

Members
  • Posts

    44
  • Joined

  • Last visited

Posts posted by freemenn

  1. Re: www.windsorparkfx.com

     

    i can see 15pips TP but not SL.

    Anyway, i saw you have to use TradeManager on one chart as well as TrendManager" on another chart (same currency and timeframe of course)

    This way it will trade with the trend as well as against the trend. THis will probably give better results as well as minor DD.

  2. Re: www.windsorparkfx.com

     

    dandawman... can you share the version u modified? I put sl at 15 as recommended in the website.however..95% the sl will be hit.. another thing is the trade manager keeps open position every trade spacing reached.. can you help to improve by adding "number of maxtrade" option? the maxattempt option is not work as limit.. thanks in advance 8-)

     

    where did you reade about SL =15 I couldnt find this on there website...

  3. Re: [Req] ISEA (Investiva Super Expert Advisor)

     

    I'll give my results. My results are from using CollectiveFX as the broker. There are times that I make the computer sleep when traveling to and from work. I may not bring it from sleep as soon as I get to work, or as soon as I get home. The results can update this way, so all members may study how to improve using the results. What times should we cut out? Know when you are looking at the results that I do try to delete limit orders if I am about to travel, and new limit orders are placed almost as soon as I bring up the computer from sleep. If an executed trade is going when I put the computer to sleep, since it has TP and SL, I let it go instead of closing it.

     

    http://disbellj.mt4live.com/

     

    Don

     

     

    Hi, i hadn't time to look into this the last few days.as I am not sure when you would like to avoind trading:

    - high volatility

    - low volatility

    - tranding

    - sidway

     

    Please let me know. Maybe i can find a good indicator that allows to prevent trading that we can add to the code.

    as for SL, yes a smaler woulbe be better, let's say 18 pips.

    Also the is already times settng for trading in the EA

  4. Re: [share] Neoticker for MBTrading, automatically trading tool

     

    Hi,

    thansk for this post.

     

    the link

    http://www.mbtrading.com/download.asp

    doesnt work.

     

    But what advantages should this have using MB TRading broker? Tere you can use MT4... faster and with no hassle..

    To use it with other brokers you still have to get one that use unfiltered data to use this EA Then ou have to modify/rewrite the code.

     

    So where is the advantage?

  5. Re: [Req] ISEA (Investiva Super Expert Advisor)

     

    freemenn,

     

    I have the same code as you do (IS_5digits_corrected_cleaned.mq4):

    MinStopLoss = MarketInfo(Symbol(), MODE_STOPLEVEL);

    MinStopLoss = (MinStopLoss + 1.0) * Point;

    stoploss = SL_pips * Point;

    LimitEntry = pipsaway * Point;

    MA_distance = MA_distance_pips * Point;

    takeprofit = TP_pips * Point;

    spread = Ask - Bid;

     

    BTW, IS_5digits_corrected_cleaned.mq4 is what I'm using on CollectiveFX with TradeVolume of 40 (risking approx. 10% per trade, which is not too much as long as the strategy wins much more than it loses IMHO. Other than that, I have changed nothing). I'm now at equity of 11,873.28 (with a buy and two sells open). If I lose the trade I'm in, that will be a stack of losses last night and this morning, and frankly this is not looking so good anymore when we keep going up and down like this. It looks to me like a filter MUST be added to keep us out of trending markets and only trade in ranging ones. Plus the stoploss is a long ways away, and maybe half that stop loss should be used (15 pips?). I don't know. I just know there are times I buy, and the currency jumps off a cliff it looks like on EURCHF M5 chart in the last day - more losers than the first couple of days, so eating up profit gained before.

     

    If you find a good combination, please let me know.

     

    Thanks

     

    Don

     

     

    I had some channel indicator that could be used...

    If trend goes out of the channel the trading should be stopped.. but couldnt find it yet...(have so many indicators here..)

    :wew:

    Will post it as soon as i find it.

  6. Re: [Req] ISEA (Investiva Super Expert Advisor)

     

    try this:

    this code is in ISEA

    Mode_stop_level = MarketInfo(Symbol(), MODE_STOPLEVEL);

    Mode_stop_level = (Mode_stop_level + 1.0) * Point;

    The 5 digits ISEA was made on the sigma platform, it has MODE_STOPLEVEL=5 pips.

    But in your collective FX, you have MODE_STOPLEVEL=0, so you change the code in 5 digits ISEA for your platform to

     

    //Mode_stop_level = MarketInfo(Symbol(), MODE_STOPLEVEL);

    Mode_stop_level = 50; //(50 pips for 5 digits system = 5 pips for normal 4 digits system)

    Mode_stop_level = (Mode_stop_level + 1.0) * Point;

     

     

    =======================

     

    hi,

    i couldnt find the following part in ISEA version: "IS_5digits_corrected_cleaned"

    -------------

    //Mode_stop_level = MarketInfo(Symbol(), MODE_STOPLEVEL);

    Mode_stop_level = 50; //(50 pips for 5 digits system = 5 pips for normal 4 digits system)

    -------------

     

    What I have in the code is:

    -------------

     

    MinStopLoss = MarketInfo(Symbol(), MODE_STOPLEVEL);

    MinStopLoss = (MinStopLoss + 1.0) * Point;

    stoploss = SL_pips * Point;

    LimitEntry = pipsaway * Point;

    MA_distance = MA_distance_pips * Point;

    takeprofit = TP_pips * Point;

    spread = Ask - Bid;

    -----------

     

    so as long as no one has modify that code there are some different versions around....

     

     

    :(

  7. Re: [Req] ISEA (Investiva Super Expert Advisor)

     

    yep sof far, i have downloaded a lot of MT4 platforms from almost every MT4 ECN broker. But nothing works near to sigma demo.

    Maybe we really have go to another platform.

    BUT: wich broker di you use if you go with ninja??

    AND: are there other solutions of other platforms where the EA can ben "translated"

    AND then, what broker?

     

    So far it seems the EA is usless without any unfiltered datafeed and low spreads...

     

     

    :x

  8. Re: [Req] ISEA (Investiva Super Expert Advisor)

     

    ======================================================

    For people who want to test ISEA with Ninjatrader, here is Ninjatrader 6.5+Multibroker+crack

     

    http://rapid*share.com/files/224456189/njatdr65.rar.html

    ======================================================

     

    can somone please upload this to 4shared or elswhere? I cannot download from rapidshare....

     

    thanks

  9. Re: [Req] ISEA (Investiva Super Expert Advisor)

     

    Ok i will this post here as well as on the new thread:

    I am very interested join in the club.But befor we can ge that ECN brokerage club, send money etc.

    we should have at least a demo versione from boston tecnology.That way we can test the datafeed as well as the EA

    Of course we must have GUARANTEE that demo and real acocunt will have same structure, spreads, unfiltered datafee etc.

    Is this possible?

    "progressapama" can you ask Bostot T. to provide us a demo account?

     

     

     

    thanks

×
×
  • Create New...