Disliked{quote} The sent files give an error when they are compiled, which was the reason The charts you post were not related to these codesIgnored
Attached File(s)
2
I will code your scalping EAs for no charge 54 replies
I will code your pivot EAs for no charge 20 replies
Need help to code EAs for MT4 and MT5 4 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} The sent files give an error when they are compiled, which was the reason The charts you post were not related to these codesIgnored
Disliked{quote} here is the complete file so you can check and see {file} {image} {image}Ignored
DislikedHi guys, Please help to understand the logic behind these arrows. Green line is MA - LinearWeighted(20) Median Price(HL/2). Colors of candles are different indicator and has nothing to do with that MA. {image}Ignored
Disliked...indicator/script that deselects objects that are selected in the chart?...Ignored
Disliked{quote} here you can find your answers https://www.forexfactory.com/thread/...sonic-r-systemIgnored
QuoteDisliked#property indicator_chart_window
// Global Variables
double AlertPrice;
string AlertSymbol;
double alert[];
// Entry Point
int OnInit()
{
// Request user input for the symbol and alert price
AlertSymbol = Symbol();
AlertPrice = Ask;
AlertPrice = NormalizeDouble(AlertPrice, Digits);
string inputValue = DoubleToString(AlertPrice);
string inputMessage = "Enter the Alert Price for " + AlertSymbol;
Comment(inputMessage, inputValue, inputValue);
AlertPrice = StringToDouble(inputValue);
// Indicator initialization
IndicatorBuffers(1);
SetIndexBuffer(0,...
DislikedHi to all great coders and everyone in FF.. I need an indicator that can show me my last trades. Why this is important for me? With the knowledge of my previous tredes I can decide what to do next. I found an interesting indicator in mql5 www site but it groupes trades together by symbol. It would be nice to see it by specific trade and with the info of % loss or gain. https://www.mql5.com/en/market/produ...3atrade+report Best regards, Krojczy {image}Ignored
Disliked{quote} Objects_Select_Deselect - will select or deselect all objects on the chart - can affect objects with a certain tag in their name like all bob for UPbobArrow, bobLine, 123dotbob - can affect all types of objects or only a single type {file}Ignored
Disliked{quote} After reading your code, reducing the variable count or changing it to 0 will make your indicator not work well. Some other functions depend on the count variable, eg an array called index uses the count variable to keep count of how many sets of values it has. So, to simply prevent drawing of the lines you need to simply comment out or delete this function call.{image}Ignored