ForexTrader17
ForexTrader17
Friends 1
ForexTrader17
Left feedback to developer for job An EA based on Simple Moving Averages.
ForexTrader17
Left feedback to developer for job Need an EA for MQL5 based off Fractals.
ForexTrader17
Added topic App for a VPS.
Is there an App I can use on a VPS to restart MT5 in case the VPS shuts down for some reason and then comes back on? Thanks. 
ForexTrader17
Added topic Pips or Points for Futures EA in MT5
While using an EA for US Futures markets, do we set profit and loss in pips or points? For example the ES moves in increments of 0.25 and bonds move in increments of 1/32. Did not see fraction in MT5 either. Thank you. 
ForexTrader17
Left feedback to developer for job Our last EA needs modification.
ForexTrader17
Left feedback to developer for job A simple EA based on Price Action.
ForexTrader17
Added topic Adding pips to a trailing stop.
I am trying to add/subtract pips to a trailing stop code depending on buy/sell. Is this correct? if (isNewBar) TrailingStopSet( OP_BUY , Support( 4 * PeriodSeconds (), false , 00 , 00 , true , 1 ))  - 5 * myPoint if (isNewBar) TrailingStopSet(
ForexTrader17
Added topic Setting Profit Target.
When I try to set a profit Target using the high and low of bars 2 and 3 the EA does not apply it. Is there something wrong with the code? I am basically trying to subtract from the opening price the difference in pips between the high and low
ForexTrader17
Added topic Alternating Trades.
If I do not want to trade long after a buy trade and vice versa is there a function in MT4 that does that? Or will somethin like this work too? If LastOpenTrade != Op_Buy Thanks. 
ForexTrader17
Added topic Functions in MT4.
Are there built in functions for Last Trade was Long or Short? Also a function for Total Number of Trades for the day? And a function to stop for day if Profit is X dollars for day and restart next day? Thank you. 
ForexTrader17
Added topic Adding pips to a MA.
I am trying to place a trade in a band between a MA and pips added to the MA using the ATR. So say I want to open a trade only between the MA and X pips added to it. Will the code below work? Is ATR always a value returned in pips that can be added
ForexTrader17
Added topic Need help with Last Trade Open Price.
This is my function for the last trade opening price. double LastTradePrice()   {    double result = 0;    for(int i = OrdersTotal()-1; i >= 0; i--)      {       if(!OrderSelect(i
ForexTrader17
Added topic Same EA across several pairs.
Is there a way in MT4 to remove or add the same EA across several charts at a time?  have 10 to 14 charts running on a VPS and want to find a way to remove all EAs on the charts at the same time or add an EA on all charts at once. Thank
ForexTrader17
Added topic Buying or Selling at the 00 levels.
How would I code something like if bid is at 1.1756 then I want to put a buy limit at next 00 level below it or at 1.1700. Same or sell. If market at say 1.1756 then I want to place sell limit at closest above 00 level or 1.1800 for example. Is there
ForexTrader17
Added topic Difference between a close and open.
How would I code something like this: The Close[2] = Open[1] +/- 3 pips. So basically I do not want to see a difference of more than X pips between  the close and an open of the following bar. Is there a function that does it? Because it can a
ForexTrader17
Added topic Close in top or bottom quarter of bar.
How would I code for an EA a close in the top or bottom quarter of the bar? Thanks. 
ForexTrader17
Added topic Comparing a bunch of bars back to a single bar.
How would you code something where you want to compare say the highs of several bars to a single bars high? Thanks. 
ForexTrader17
Added topic Set trailing stop at bar range.
If I set a break even stop at say bar 2 range/4 and the trade executes, is bar 2's range calculated and the 1/4 of it stored somewhere as a variable? Because the profit might happen a few bars later. But I need EA to look at range of the original
ForexTrader17
Added topic How to exclude certain bars in trading.
Is it possible to exclude bars that start at a certain time in an EA? For example if a backtest shows that trades on H! bars of 13, 14, 15, 17,21 and 23 did not do well then how do I exclude them in an EA? Thanks. 
ForexTrader17
Left feedback to developer for job An EA based on the Indicator you made for Trend.
123