Graham Pace
Graham Pace
  • Information
4 years
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Graham Pace
Added topic Weird indicator vs Expert advisor
I use an indicator that looks and works fine on all past data but it has weird calculations when it comes to continually running. It starts drawing lines in random places. (I hope this is making sense) What I want to know is, when I program this into
Graham Pace
Added topic EA "Trade Failure, Market Closed" help
I am programming an ea that places a trade once a day after the new day candle opens. But sometimes I get the warning "Trade Failure, Market Closed ". How do i re-send the trade if it doesn't open
Graham Pace
Graham Pace
I am starting to do a technical analysis one one pair every weekend, this is my very first. It will only get better from here.

https://youtu.be/S1iCi5yf1xI
Graham Pace
Added topic I want to adjust this EA...
I have attached an EA and I thought it would manage my personal trades that I make, but after testing it, it doesn't do anything to my trades. Can someone help me and tell me how/or adjust it so it will manage all the trades, including my own
Graham Pace
Added topic I'm trying to subtract my profits and add my losses, would this work?
I'm trying to write a code that will make a "Profit Target" which will subtract my profits in the past 24 hours and add my losses. But I think there is something wrong, can anyone help? int ProfitTarget = 1000 {    for ( int q = 0 ;
Graham Pace
Added topic Open multiple trades, One per pair. (I can't figure out how to code it)
Currently, I have been using this code... //------------------------------------------------------------------- int TotalOrdersCount() {   int result=0;   for(int i=0;i<OrdersTotal();i++)   {    
Graham Pace
Added topic My Close For Profit/Loss EA isn't functioning properly.
This EA closes all the trades when everything either reaches a set positive or negative amount. However, when no trades are open it has a problem. "Zero Dived in EA" (see attachment) then the entire EA stops. I need help in what to do to my EA to
Graham Pace
Added topic Need help adjusting this EA
I found this EA and would love if someone could help me adjust it. The only setting I want to change is closing everything for a loss instead of a gain.  Currently when all the trades that are open reach XX positive it closes everything. But I
Graham Pace
Added topic MT4 AutoClose Trades and disable auto trading
I am looking for an EA out there that if the account has a drawback of XXX dollars or XX% it closes all open positions and disables auto trading.  Is there such an EA