Hi guys, could one of you fab coders create a Williams Percent Range osc that has an alert when price crosses -50 or has someone got one they could post for me please.
Thank you
Thank you
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
DislikedHi guys, could one of you fab coders create a Williams Percent Range osc that has an alert when price crosses -50 or has someone got one they could post for me please. Thank youIgnored
Disliked{quote} Found this in the dark recesses of FF. Haven't tried it, but the code seems clean. Its MQ4, though. https://www.forexfactory.com/thread/...ange-indicator PS: Post 6., WPR.mq4Ignored
DislikedIn mq4"ObjectSetText" label below, I would have to display different color for: if(cciTrendNow > 0) {Obj_Color1 = Up_Color;} if(cciTrendNow < 0) {Obj_Color1 = Down_Color;} if(cciEntryNow > 0) {Obj_Color2 = Up_Color;} if(cciEntryNow < 0) {Obj_Color2 = Down_Color;} if(cciFilterNow > 0) {Obj_Color3 = Up_Color;} if(cciFilterNow < 0) {Obj_Color3 = Down_Color;} Is there an easy way to define these in the "ObjectSetText" label below ? ObjectCreate("Label", OBJ_LABEL, 0, 0, 0); ObjectSetText("Label", "Trend CCI: "+ MathRound(cciTrendNow) + " Entry CCI:...Ignored
DislikedIn mq4"ObjectSetText" label below, I would have to display different color for...Is there an easy way to define these in the "ObjectSetText" label below ?...Ignored
Disliked{quote} 1 label, 1 color, if you want 3 colors for each, you'll need 3 labels to each have their own color. Remember to give them different names and placements.Ignored
DislikedHello Coders, I still have a pending request. I’ll appreciate if someone could do that. Regards. https://www.forexfactory.com/thread/...1#post13465831Ignored
DislikedI have this heatmap indicator: "heatmap-gradient-scale.mq4" and would like to make it scrollable (if possible up/down) so to see the symbols outside the chart. Or to limit the number of symbols to the max visible on the chart and start a 2nd, 3rd etc.. column next to each other. Someone an idea how to fix this ? {file}Ignored
DislikedHi guys, could one of you fab coders create a Williams Percent Range osc that has an alert when price crosses -50 or has someone got one they could post for me please. Thank youIgnored
Disliked{quote} Can someone have a look how to adapt this heatmap indicator to scroll or split into consecutive columns ?Ignored
Disliked{quote} Thanks jeanlouie for the mql syntax, it’s a bit what I thought but was hoping a more simpler way of doing within a concatenate instructionIgnored
int start_x = 150;
int start_y = 75;
int inc_x = 100;//move along right
int inc_y = 0;//same height
ObjectCreate("Label 1", OBJ_LABEL, 0, 0, 0);
ObjectSetText("Label 1", "text 1", 12, "Tahoma", Obj_Color_1);
ObjectSet("Labe 1", OBJPROP_CORNER, 0);
ObjectSet("Label 1", OBJPROP_XDISTANCE, start_x+inc_x*0);
ObjectSet("Label 1", OBJPROP_YDISTANCE, start_y +inc_y*0);
ObjectCreate("Label 2", OBJ_LABEL, 0, 0, 0);
ObjectSetText("Label 2", "text 2", 12, "Tahoma", Obj_Color_2);
ObjectSet("Label 2", OBJPROP_CORNER, 0);
ObjectSet("Label 2", OBJPROP_XDISTANCE, start_x+inc_x*1);
ObjectSet("Label 2", OBJPROP_YDISTANCE, start_y +inc_y*1);
ObjectCreate("Label 3", OBJ_LABEL, 0, 0, 0);
ObjectSetText("Label 3", "text 3", 12, "Tahoma", Obj_Color_3);
ObjectSet("Label 3", OBJPROP_CORNER, 0);
ObjectSet("Label 3", OBJPROP_XDISTANCE, start_x+inc_x*2);
ObjectSet("Label 3", OBJPROP_YDISTANCE, start_y +inc_y*2); DislikedJust to get around no attachments in pms Addressed {file} {image} {file}Ignored