Jump to content

scarface

Members
  • Posts

    671
  • Joined

  • Last visited

Posts posted by scarface

  1. Re: ECN stuff EA's only

     

    Hi traders,

     

    Good day,

     

    I will be glad to share something related to this topic.

     

    Maybe I can share some of what I know; to what we call it " converting to ECN ".

     

    The steps are as the following:

     

    1- Since your EAs will be use on ECN brokers, make sure the sendorder function place positions without SL or TP.

     

    2- You can then modify SL and/or TP using orderreliable2step

     

    For that you need to use this mqh file as shown below:

     

    #include <LibOrderReliable.mqh>

     

    3- You can modify your code like this:

     

     if(CheckEntry(trendtimeframe) ==  1 && CountBuys(MagicNumber)  == 0 && CountSells(MagicNumber) == 0)
       {                                                                          
       OrderSendReliable2Step(Symbol(),OP_BUY,LotsOptimized(),Ask,Slippage,Ask-(StopFactor*Point), Ask+(ProfitFactor*Point), "ECN Buy", MagicNumber,0,Blue);
       }
    
      if(CheckEntry(trendtimeframe) == -1 && CountSells(MagicNumber) == 0 && CountBuys(MagicNumber)  == 0) 
       {
       OrderSendReliable2Step(Symbol(),OP_SELL,LotsOptimized(),Bid,Slippage,Bid+(StopFactor*Point), Bid-(ProfitFactor*Point), "ECN Sell", MagicNumber,0,Red);
       }
    

     

    I hope the idea is clear now. Keep it simple simple ;)

     

    If there is an question, please don't hesitate to ask.

     

    Best wishes for all.

  2. Re: Developing S/R Expert : Highly Profitable : 99 % Accuracy

     

    Hi harsh124,

     

    Good day,

     

    Here is the EA on the link with its indicators:

     

    hxxp://xxx.multiupload.com/3VHDN08Q81

     

    And here is explanation for the EA properties:

    The parameters for the expert are:

     

     

    TakeProfit = 40; // Profit Goal for orders opened

     

    Lots = 0.01; // We start with this lots number, 0.01 for micro accounts and 0.1 for mini and normal accounts

     

    StopLoss = 0; // StopLoss

     

    TrailingStop = 20;// Pips to trail the StopLoss

     

     

    MaxTrades=10 // Maximum number of orders to open (from 0.1 the lots will be 0.1, 0.2, 0.4, 0.8, 1.6, 3.2, 6.4, 12.8, 25.6, 51.2)

     

    Pips=15 // Distance in Pips from one order to another

     

     

    SecureProfitProtection=False; // IF true the SecureProtection subsystem will start working

     

    SecureProfit=20 // If profit made is bigger than SecureProfit we close the orders

     

    OrderstoProtect=3 // Number of orders to enable the account protection

     

    AllSymbolsProtect=0 // if one will check profit from all symbols, if cero only this symbol

     

     

    EquityProtection=True; // if true, then the expert will protect the account equity to the percent specified

     

    AccountEquityPercentProtection=65; // percent of the account to protect on a set of trades

     

     

    AccountMoneyProtection=False; // if true the expert will protect the account based on an amount specified

     

    AccountMoneyProtectionValue=3000.00; // close all orders when this amount was lost in the account

     

     

    NewsFileProtection=True; // if true the expert will read the News File to stop trading on the dates/times specified on that file.

     

    NewsFileSize=124; // number of lines in the New file

     

    BrokersTZ=2; // This value must be set to the Brokers data timezone, for example for FXDD is 2, for Interbank is 0, you must search what data time frame has your broker

     

    NewsFileTZ=-5; // This is the time zone of the dates/times in the News file, by default ill be creating this file in NewYork time EST (GMT-5)

     

     

    TradeOnFriday=False; // to save lines on the News file, you can set this parameter to true and the expert will close all orders and stop trading at friday (brokers time)

     

     

    OrdersTimeAlive=0; // in seconds, this parameter is if you want to set a specific time of live to all the orders set

     

     

    ReverseCondition=0 // if one the desition to go long/short will be reversed

     

    SetLimitOrders=True; // if true, instead open market orders it will open limit orders (from 2nd order, the first order opened is a market order)

     

     

    StartYear=2005 // Year to start (only for backtest)

     

    StartMonth=1 // month to start (only for backtest)

     

    EndYear=2006 // Year to stop trading (backtest and live)

     

    EndMonth=12 // Month to stop trading (backtest and live)

     

    mm=0 // if one the lots size will increase based on account size

     

    risk=12 // risk to calculate the lots size (only if mm is enabled)

     

    AccountisNormal=0 // Cero if account is mini/micro

     

    MagicNumber=222777 // Magic number for the orders placed

     

    Manual=0 // If set to one then it will not open trades automatically

     

     

    OpenOrdersBasedOn=2 // Method to decide if we start long or short.

    The actual values for this parameter are:

    0. MACD

    1. Pivot price level

    2. Support/Resistance levels (best results on all symbols)

    3. PSAR, if (PSAR)<= Low[1] AND PSAR > High[0]) start short, if (PSQR >= High[1] && PSAR < Low[0] ) start long

    4. BrainTrend1Stop, if (short signal) start short, if (long signal) start long

    5. Open only Sell orders

    6. Open only Buy orders

    7. RSI 2MA, if(ma1b4>=ma2b4 && ma1<ma2) start short, if(ma1b4<=ma2b4 && ma1>ma2) start long

    8. SMA, if(Open[1]>ma && Close[1]<ma) start short, if(Open[1]<ma && Close[1]>ma) start long

    9. CCI, if(ccib4>=0 && cci<0) start short, if(ccib4<=0 && cci>0) start long

    10. Based on Bulls and Bears (if bull+bear<0 we start short, if bull+bear>0 we start long)

     

    * 11 - OpenOrdersBasedOnTrendManager

    SELL if red bellow price

    BUY if blue above price

    * 12 - OpenOrdersBasedOnFXFish

    SELL if indicator bellow cero line

    BUY if indicator above cero line

    * 13 - OpenOrdersBasedOnOpenClose

    SELL if previous bar open-close > 10 pips

    BUY if previous bar close-open > 10 pips

     

     

    TimeZone=16 // Time zone to calculate the pivots (not all the methods uses it)

     

    ArrowsColor=Black; // this is the color for the arrows displayed on the chart

     

    I hope this is useful.

     

    Best wishes,

  3. Re: Developing S/R Expert : Highly Profitable : 99 % Accuracy

     

    Hi guys.

     

    Good day,

     

    Sorry for being late. There are a lot of stuff I have to do so forgive me if reply late again.

     

    Look, there is something similar to what Harsh is looking for. There is an EA called DLM v1.4 or 1.3 and they both have the choice of placing positions based on R & S indicator that is posted in the first page.

     

    Look, I guess all you need is to state you conditions on how to buy and how to sell.

     

    By the way, DLM ea is based on Martingale so I guess you can deactivate it.

     

    Please find the EA somewhere on the net and let others get the benefit as well.

     

    It might be profitable with some modification.

     

    If there is anything I can do, please let me know.

     

    Best wishes,

  4. Re: All ilan EA versions.

     

    http://depositfiles.com/files/rkuyka8eg

    I do not know if scarface will permit me to post this ea in his thread, and If he disaproves I willl delete it. Its my personal mod of well known martingale ea, i reccomed you test it on your alpari uk demo account play around with setting and find out what you like and share with us, i run it on m1.

     

    Hi Cyrillic,

     

    Good day,

     

    Go ahead, and no problem at all. Feel free to do that.

     

    And by the way, you are totally right about playing with the risk. ;) I knew you are a unique trader. :D

     

    Best wishes,

  5. Re: All ilan EA versions.

     

    if this EA can daily profit $40.00 based on a $500.00 account trading 0.01 its already very good. and every day restart the EA again and again everyday for $40.00/day

     

    Hi,

     

    Good day,

     

    I believe you can make more than that if you just think a little bit more on how to use it.

     

    First, think how many pairs you will use on and why??

     

    The answer is easy. Since it is a martingale EA, then you need a reverse pair, right?? say you will use EURUSD as a main pair,then the best reverse choice would be .... say USDCHF since they always go in reverse direction. Now say you will use another pair like GBPUSD, is there a reverse for this currency?? maybe there is, and maybe not. I hope this point is clear now, and I don't need to explain more.

     

    Now if you know the direction of trend of market for say EURUSD, for me as 22nd Feb, 2010 I see it going down maybe till 1.30xx more or less, and it could reach as well 1.28xx , why do I say that?? well, in such a case we need to use a specific EA, which is say ilan Double... why?? it places two positions in both sides. and since you know the general trend direction, in this case you need to increase the lot for sell comparing to buy lot. say for buy 0.01 and for sell 0.03. I will leave you the distance between positions, but make sure the distance for sell is closer than for the buy positions.

     

    I hope this is useful.

     

    Best wishes for all.

  6. Re: Developing S/R Expert : Highly Profitable : 99 % Accuracy

     

    Hi harsh124,

     

    Good day,

     

    Thanks for your thread here and sharing your system as well with us.

     

    I will look into your system and how it behaves, and then tell you what I'm going to do next. I probably have seen such system before, and maybe I have an EA for that as well (not sure though).

     

    Please give me sometime today and get back to you as soon as possible.

     

    Best wishes,

  7. Re: The Best MT4 Broker Recommended !!!

     

    Hi i4xtrading,

     

    Good day,

     

    Thanks for the info about this new Russian broker.

     

    I've heard some good stuff about it, but never known any one so far using this broker. I've tried there demo and I could make 100% profit starting from 1K in few hours. I notice that their execution is fast enough the same as other brokers on demo account. Now the problem is how would be or let's say would be the same as demo if it was a real account??

     

    we need to verify more and more so we get confident before wasting our money in the garbage.

     

    Thanks again.

     

    Best wishes,

  8. Re: Fusion v1.1a

     

    Syabr

     

    How could those results be real??? The Fusion was not even designed till this year. So, obviously it would have to be Backtest.

     

    Hi,

     

    Good day.

     

    Look all EAs are actually here or there before the release and after that as well. Note that most EAs are actually copies from each other except a little change. I'm sure if I look at the code, it would be something similar to one of the EAs in public.

     

    I hope this point is clear to you know.

     

    Best wishes,

  9. Re: Need Alert for these indicators

     

    Hi seggyson,

     

    Good day,

     

    sorry for being late to reply.

     

    well, it is kind of hard to tell. You requested to have an alert when all colors match, which is not easy to do.

     

    Give me sometime so I can think about it and how it is possibly can be.

     

    Best wishes,

  10. Re: FXPRO

     

    Hi staw,

     

    Good day,

     

    I want to share my experience as well about Fxpro.

     

    So far it is not bad. I guess it is one of the best brokers. The spreads are quite small especially on EURUSD ranging from 0.8 to 1.8 max, and never seen it higher than that except during major news as usual for all brokers.

     

    Now, for execution as I can see it is almost the same as other brokers fast enough to place a position, but gets hard or say "re-quote" a lot during major news. Again it is a very common thing as I have seen it with other brokers as well.

     

    I hope this is useful.

     

    Best wishes,

  11. Re: Manual MT4 price alert creation

     

    Hi seggyson,

     

    Good day,

     

    Are you trying to add an alert to indicators for example when some specific conditions meet??

     

    If this is the case, would you mind opening a new thread explaining what you want in details, and if you have a picture of the system, it would be much appreciated.

     

    Please let me know as soon as possible.

     

    Best wishes,

  12. Re: Nice Trend indi (fix)

     

    Hi scouseman,

     

    Good day,

     

    Can you post a picture of your indicator before decompilation so I can see where the problem is?

     

    Maybe the problem you are referring to can't be seen through the code, but only by picture.

     

    Please let me know.

     

    Best wishes,

  13. Re: Decouple EAs from their dlls

     

    Thanks for making me aware of that. Is it acceptable to post a tutorial file published in another forum on one of the file repositories (rapid*share and such) and post a link to it in this forum?

     

    Hi ylider

     

    Good day,

     

    Yes, sure you can do that. However, make sure you include the source of the file and the author so it is considered to be copyrighted since it is "policy of the forum".

     

    If there is anything you want to ask about, please feel free to ask anyone here. There are a lot of great people who can help here.

     

    Thanks for the valuable assistance Birt. I'm learning a lot from you these days.

     

    Best wishes,

  14. Re: (ask) how to code this

     

    Hi zoop,

     

    Good day,

     

    In your case, just you comments return value say by using the difference example you mentioned.

     

    You can use either the message box or the normal comments function.

     

    If it is clear please let me know and if not, please let me know I can give you an example related to what you want.

     

    Thanks birt, for the great help.

     

    Best wishes,

  15. Re: Trend Indicator

     

    Hi te-foder,

     

    Good day,

     

    I believe you want to convert that indicator to MT4. In this case, you need to show us the picture of how it looks like and the name of the indicator. Maybe it has been converted before by someone so we don't need to re-do the same job again and again.

     

    Please let me know as soon as possible.

     

    Best wishes,

  16. Re: Chaosentry indicator

     

    Hi johndata,

     

    Good day,

     

    Here is the indicator. Check it out and see if the problem is still there or not.

     

    hxxp://xxx.multiupload.com/MJLZZW1IRN

     

    Please let me know if you can.

     

    And thanks Starting for your great assistance.

     

    Best wishes,

  17. Re: Spread Check

     

    Hi tongtoro,

     

    Good day,

     

    Ok, now I understand what you meant by improving the EA. I believe you want to add the Highest spread reached and lowest as well.

     

    I can try that and let you know soon.

     

    I guess it is a good my friend.

     

    Best wishes,

     

    -- 31 Jan 2010, 17:52 --

     

    Hi tongtoro,

     

    Good day,

     

    Here is a version I just developed. You can try it whenever you want. If you think there is more ideas about how to improve it, please let me know.

     

     hxxp://xxx.multiupload.com/44UCRK3TAI 

     

    Best wishes,

  18. Re: vertical line indicator

     

    Hi raikon,

     

    Good day,

     

    Thanks for your question.

     

    well, as paws, stated that you can control such feature from the MT4 properties. If however you still seeking an indicator, I will check if I have it or not, and let you know as soon as possible.

     

    Best wishes,

×
×
  • Create New...