Disliked{quote} Thank You RIKc, but when I try to change timeframes the terminal freezes, I don't know if it's just me, or maybe others can give an opinion... I have the original 4 macd installed too? maybe??Ignored
Attached File(s)
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
DislikedHi Coders, Could any one pls modify the attached indicator that could show 6 Moving averages, presently it is showing 3 only And also pls add a input that the window can be placed in any Conner of the chart Your help will be more useful for me Thanking you in advance{file}
Ignored
Disliked{quote} This EA sets a line on the chart which can be dragged to any position on the chart. The EA is primarily coded to handle a single trade however if multi trades are open and the price hits the trade reversal line then one trade will close immediately followed by each trade closing based on the seconds allowed between trades in the inputs. IMPORTANT : This EA needs to be dragged onto the chart ( Not loaded directly out of the Navigator window by double clicking on the EA ) and the mouse button should be released when the mouse cursor is where...Ignored
Disliked{quote} Hi BlueRain, Finally now got the EA. Can you assist by modifying it to monitor all trades in a chart instead of only those with magic number selected? {file}Ignored
Disliked{quote} You are mixed up with MagicNumber and TicketNumber. Your attached EA doesn't handle any of MagicNumber. It seems you have to input specific ticket number and it will do TrailingStop. Anyway, I added a loop so that it does handle all orders. Ticket option is removed. {file}Ignored
Disliked{quote} Thanks CJA, I was just reviewing the horizontal line EA you created and the Rules you added to the line, sets up a different trade situation. You set the line on a timer system, which opens or closes trades based on the timer, and then for the horizontal line being hit. I think I can understand the problem that might exist with the code since the bar close would have to be on the current bar and the code has to reflect the relationship between the line and current bars. That might be why you added the timer system. but what if the price...Ignored
DislikedHi coders, Could you please add alert in this indicator This indicator have a alert ...but i want alert in 5M and filter by 1 hour Example .. if JPY cross above 52 in 5 Minutes chart (Candle Close) and at the same time JPY is already above 55 in 1 Hour then send alert (BUY ALL JPY) if JPY cross below 48 in 5 Minutes chart (Candle Close) and at the same time JPY is already below 45 in 1 Hour then send alert (SELL ALL JPY) send alert for 8 currency please add push notification and email alert Sorry for my broken English Thank you {file} {image}Ignored
Disliked{quote} Hi eess, thank you very much. Would you please add indi not modified? Just indi which shows a point on the chart when 2 EMA cross over and text Short or LONG on the top right corner in chart without coloured candles? When I changed colour of the candles, text disappeared. Thanks a lot.Ignored
Disliked{quote} made for M1. The rest need to be corrected in the same way. Too long to fix. I do not want. {file}Ignored
#property strict
#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 clrBlue
#property indicator_color2 clrRed
#property indicator_width1 2
#property indicator_width2 2
double ask[], bid[];
int Oninit()
{
SetIndexStyle(0,DRAW_LINE); SetIndexBuffer(0,ask);
SetIndexStyle(1,DRAW_LINE); SetIndexBuffer(1,ask);
return(INIT_SUCCEEDED);
}
void ShiftArray()
{
for (int n=WindowBarsPerChart()+2;n>0;n--)
{
if (ask[n] != EMPTY_VALUE); (ask[n+1] = ask[n]); (bid[n+1] = bid[n] ) //skip empty value on new candle
}
}
int OnCalculate (const int rates_total, const int prev_calculated, const datetime &time[], const double &open[], const double &high[],
const double &low[], const double &close[], const long &tick_volume[], const long &volume[], const int &spread[] )
{
ShiftArray();
ask[1]=Ask;
bid[1]=Bid;
return(rates_total);
} Disliked{quote} Here is a version using the candle close. As far as your "Rules" go this EA follows exactly what you requested. Your request: The idea is to place a horizontal line on the chart and when the price closes above, it will open a buy, and if it goes back and closes below the horizontal line, the previous order will be closed and a sell order will be opened. This will happen until the price moves in one direction or the other. My entries are usually on the 1min, with trade decisions based on the 1hr and 4 hr. NOTE : You cannot change the name...Ignored
Disliked{quote} made for M1. The rest need to be corrected in the same way. Too long to fix. I do not want. {file}Ignored
Disliked{image}i found this img on the internet, and makes me wodered if somebody know it or have it please share with me I'm looking indicator on the subwindow ThanksIgnored