Can someone add Weekly levels to the "Stratman Mini Chart" ?
Many thanks
https://www.forexfactory.com/showthread.php?t=198729
Many thanks
https://www.forexfactory.com/showthread.php?t=198729
I will code your scalping EAs for no charge 117 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
I will code your pivot EAs for no charge 20 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 ca someone assit me adding levels to an indicator I just added the indicator levels with the mt4 but I want to code them with mql4 but I don't know what to edit in the script {image}Ignored
DislikedHi guys I am looking for a currency strength indicator Any help cheersIgnored
Disliked{quote} Place this inside of your init(), inside the {}: IndicatorSetInteger(Indicator_Levels,4); SetLevelValue(1,yourvalue); SetLevelValue(2,yourvalue); SetLevelValue(3,yourvalue); SetLevelValue(4,yourvalue); SetLevelStyle(DRAW_LINE,1,yourcolour);Ignored
Disliked{quote} It looks like I'm failing to put the parameters correctly can someone please modify this indicator for me to have levels {file}Ignored
DislikedBeerrun I can bet you have very high IQ, thanks a lot, it's funny that people downloaded the indicator before me.:-)
Ignored
int stringToTimeFrame(string tfs) { for(int l = StringLen(tfs)-1; l >= 0; l--) { int char = StringGetChar(tfs,l); if((char > 96 && char < 123) || (char > 223 && char < 256)) tfs = StringSetChar(tfs, 1, char - 32); else if(char > -33 && char < 0) tfs = StringSetChar(tfs, 1, char + 224); }
Dislikedint stringToTimeFrame(string tfs) { for(int l = StringLen(tfs)-1; l >= 0; l--) { int char = StringGetChar(tfs,l); if((char > 96 && char < 123) || (char > 223 && char < 256)) tfs = StringSetChar(tfs, 1, char - 32); else if(char > -33 && char < 0) tfs = StringSetChar(tfs, 1, char + 224); } I have 12 errors trying to compiled and it has to do with the 'char' variable; how I fix it?Ignored