Disliked{quote} For a non-market option, this is a basic one. CCI_MTF - cci with mtf - basic color style options, slope, above/below 0, or single color {file} {image}Ignored
Have a nice weekend.
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
Disliked{quote} For a non-market option, this is a basic one. CCI_MTF - cci with mtf - basic color style options, slope, above/below 0, or single color {file} {image}Ignored
Disliked{quote} I mean it doesn't do what it is supposed to do MTF, I attach it to 4H and set the indicator MTF to 1H and compare it with the 1H CCI they are not the same.Ignored
DislikedHi everyone, pls is it possible to attach buy and sell buttons to this ea, sometimes when you put it on chart it does not open a trade, i belive this is due to the rsi settings. i want the buy and sell button to override every other entry condition. i basically want to use the bots trade management {file}Ignored
Disliked...With ChatGPT...When i put the indicator in timeframe 1M, the lines are drawn bad (screen), maybe a problem or bug in the scale. When i use the indicator in larger timeframe, everything is ok...Ignored
Disliked{quote} Currently you have 3 drawing buffers, the 2 green and red lines that you see, and then a black one too. If you change the color of the black one so you can see it, you'll see that it hovers around a 0 value, or see the data window. This means the subwindow scale has to accommodate the high numbers of the green and red lines (values subject to the price scale and candle ranges, ie affected by tf), and that black line too around 0, giving a squashed appearance in your first pic. Change the indicator buffers to 2, the pics below show the before...Ignored
DislikedHi everyone! With ChatGPT i coded this indicator (you can choose a moving average for indicator ASI). When i put the indicator in timeframe 1M, the lines are drawn bad (screen), maybe a problem or bug in the scale. When i use the indicator in larger timeframe, everything is ok. I want the indicator to be drawn well in every timeframe Can you fix the code? {image} {image} {file}Ignored
DislikedI was able to figure out my issue with OP_BUYSTOP, and OP_SELLSTOP orders not opening. The expiration date of the contract had to be longer than five minutes. When testing it out on the 15 minute time frame, it worked properly. I want to program a function that determines the swing high/low of the most recent swing. I was thinking about using a do...while loop. Is there a better way to do this?Ignored
void LastTwoZZValues(int Depth)
{
double SwingValue[2]={0,0};
int Found = 0;
int k = 0;
while(Found <= 2){
if(iCustom(NULL, 0, "ZigZag", Depth, 5, 3, 0, k) != 0){
SwingValue[Found] = iCustom(NULL , 0, "ZigZag", Depth, 5, 3, 0, k);
Found++;
}
k++;
}
} DislikedThe question about Holy Grail of trading and all that.. A consistent 400 pts a day should pay yr bills. Stick to a single trade on.. one or the other; Asia, London or New York session. Some wait until 9am for London session. Now the tricky bit.. stick (code) a single Up or Down arrow on a H2 chart.Ignored
DislikedHello guys? could someone help me change a trading view script to a mq5Ignored
Disliked{quote} In trading, the term “Holy Grail” is really more myth than reality. It’s borrowed from Arthurian legend—symbolizing the ultimate, flawless treasure—and in markets it refers to the dream of a perfect strategy that delivers consistent, high returns with minimal risk. Here’s how traders often describe it:Traits of the “Holy Grail” Strategy Low Risk, High Reward – Exceptional risk-to-reward ratio, where losses are small and gains are large. High Probability – A win rate that feels almost uncanny in its accuracy. Consistency – Works...
Ignored