Disliked{quote} Help you. UP AND DOWN 2022 - NON REPAINT : USE NEW VERSION ( 2ND UPDATED ). {image} {image} {file}Ignored
1
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} Help you. UP AND DOWN 2022 - NON REPAINT : USE NEW VERSION ( 2ND UPDATED ). {image} {image} {file}Ignored
Disliked{quote} In my nonsensical opinion, the btn show/hide effect template you're using from banzaifx indicators, is a not-so-good approach and I'm not a fan but can appreciate that ppl use them. While he got it elsewhere and intended it as a general copy n paste bunch of code blocks, it's only doable with older style indicators, calls event functions that should only be called by the terminal, and can leave you not knowing what's going on either, making debugging especially cumbersome for a layperson. Either code the effect in properly or look for other...Ignored
Disliked{quote} true I use a banzaifx code, compare to modify this but it took alot longer until I got it compiled..., and is a lot harder to understand as I thought. Thanks for point out, on MT it is very hard to debug anything But pls dont help me yet, or you would be very cross with me... I just found there is a version II_SupDem Arrow Alert v.3.3.3.mq4 being released with src, on soehoe but I need to build up credit before I can download it, hope s.o. would kindly post...Ignored
else
{
ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_OFF_color);
//ObDeleteObjectsByPrefix(TAG);
ObDeleteObjectsByPrefix(lzone+TAG);
Comment("");
} Disliked{quote} There's just a minor issue with your part of code where you try to hide the objects when button is pressed, on line 308, you didn't pass the correct prefix into the ObDeleteObjectsByPrefix function, so the objects were not deleted, just change to else { ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_OFF_color); //ObDeleteObjectsByPrefix(TAG); ObDeleteObjectsByPrefix(lzone+TAG); Comment(""); } Hope this give you some idea when you try to put the button on the latest version of code. There's another issue which I didn't have time...Ignored
Disliked{quote} There's just a minor issue with your part of code where you try to hide the objects when button is pressed, on line 308, you didn't pass the correct prefix into the ObDeleteObjectsByPrefix function, so the objects were not deleted, just change to else { ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_OFF_color); //ObDeleteObjectsByPrefix(TAG); ObDeleteObjectsByPrefix(lzone+TAG); Comment(""); } Hope this give you some idea when you try to put the button on the latest version of code. There's another issue which I didn't have time...Ignored
int start()
{
RefreshRates();
price = 0; stop = 0; take = 0;
double spread = Ask - Bid;
//Set up a dummy for functions that might not be called, so they do not disturb the punters.
int x = 0;
if (x > 0)
{
CloseEnough(0, 0);
}//if (x == 0)
price = High[CandleShift] + (spread);
stop = CalculateStopLoss(OP_BUY);
take = CalculateTakeProfit(OP_BUY);
//Lot size calculated by risk
if (!CloseEnough(RiskPercent, 0)) Lot = CalculateLotSize(price, NormalizeDouble(stop, Digits) );
SendSingleTrade(OP_BUYSTOP, TradeComment, Lot, price, stop, take); Dislikedhello friends, i need your help with indicator that draw: Up arrow when: a candle has low lower than previous candle & it's close > previous candle Open Down arrow when: a candle has High Higher than previous candle & it's close < previous candle Open and option to add MA to filter trend: which consists of two MA when they're crossed upwards the indicator draw only up arrows and when they're crossed downwards the indicator draw only down arrows thanks alotIgnored
Disliked{quote} wow, it is working thank you thank you thank you very much To returning the favor, we got confluence AUDCAD would be a buy from 0.9170 or 0.9140, targets back to 0.9437, wait for confirmation && must keep your own risk management {file} {file}Ignored
Disliked{quote} Update: Sorry I updated to II_SupDem_v2.33s4o_btn for an issue. If you downloaded earlier the s3o version, pls use this instead. Here's the fix for the rest of the issues....When you get the next newest version of 3.3.3, use this one to port the changes over... {file}Ignored
Disliked{quote} I use MT4 and want to trade on seconds charts. Currently, MT4 charts don't go under 1 minute (M1). I would like to Live Trade with 5 second and 15 seconds charts. Thank you.Ignored
DislikedPlease someone code a indicator/EA wich create a chart with seconds time frime for MT5Ignored
DislikedThis strategy works best on high TF (30 min, 1H) but you can try any TF, When to open: Step 1: when the arrow is red, check if solar joy indi is red, if it is then SELL. If not red then ignore arrow signal. Step 2: when the arrow is blue, check if solar joy indi is green, if it is then BUY. If not green then ignore arrow signal. When to close: Step 3: when the trades have accumulated (either all sell or all buy), when the arrow changes colour and ALSO solar joy indi, then close all trades for the specific set that was open. Step 3 explained more:...Ignored
DislikedThis strategy works best on high TF (30 min, 1H) but you can try any TF, When to open: Step 1: when the arrow is red, check if solar joy indi is red, if it is then SELL. If not red then ignore arrow signal. Step 2: when the arrow is blue, check if solar joy indi is green, if it is then BUY. If not green then ignore arrow signal. When to close: Step 3: when the trades have accumulated (either all sell or all buy), when the arrow changes colour and ALSO solar joy indi, then close all trades for the specific set that was open. Step 3 explained more:...Ignored