Can this indicator be coded so that it shows Weekly and Monthly pivots? Thanks....
Attached File(s)
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
DislikedCan someone please code this indicator so that there are TWO reverse values and when BOTH reverse values are executed an arrow shows up. Thank you! {file}Ignored
DislikedHi Coders, Does anyone have a working T3 indicator? Its similar to MA but smoother. Its based on Mr. Tillson calculation which u can find here: https://www.technicalindicators.net/...moving-average I also attach a T3 indicator i found on FF but doesnt seem to work on my mt4 platform. Any help and or suggestions are greatly appreciated! Kind regards, Langenes {file}Ignored
Disliked{quote} Maybe you want to test it, see the setting to use Tillson calculation https://www.forex-tsd.com/forum/excl...omment_1799471 {image} {file}Ignored
Disliked{quote} Please disregard previous post. I found a working one (after testing 10 not working ones) Anyone interested in a T3 indi: {quote} Kind regardsIgnored
extern double Lots = 1; extern bool MM = false, //Use Money Management or not FromBalance = false;//Use Balance instead of Margin extern int Risk = 10; //10%
//----------------------- ADJUST LOTS IF USING MONEY MANAGEMENT if(MM)CalculateMM();
void CalculateMM()
{
double MinLots=MarketInfo(Symbol(),MODE_MINLOT);
double MaxLots=MarketInfo(Symbol(),MODE_MAXLOT);
{
if(FromBalance==false) Lots=AccountFreeMargin()/100000*Risk;
else if(FromBalance==true) Lots=AccountBalance()/100000*Risk;
}
Lots=MathMin(MaxLots,MathMax(MinLots,Lots));
if(MinLots<0.1)Lots=NormalizeDouble(Lots,2);
else
{
if(MinLots<1)Lots=NormalizeDouble(Lots,1);
else Lots=NormalizeDouble(Lots,0);
}
if(Lots<MinLots)Lots=MinLots;
if(Lots>MaxLots)Lots=MaxLots;
} DislikedHi Everyone, Hope the trading is awesome! I am looking for the indicator marked in the photo. Please please please assist, if you have please share. Saw this on a traders blog, asked where I can get it, but I have had no reply. Many thanks Guys!{image}
Ignored
Disliked{quote} Looks like its for mt5 {file} maybe this mt4 version is the same thing {file}Ignored
DislikedDear Coders! can please put in magic number in this EA? THX {file}Ignored
Disliked{quote} Try it out now (made some other changes too - namely the way they are aligned to the upper chart limit) {file}Ignored
Disliked{quote} ok, I have implemented the EA-stuff from http://www.forexfactory.com/showthre...12#post7394912 into the EA from http://www.forexfactory.com/showthre...12#post7396012 In the backtester it seems to work. pls. notice that I have renamed the EA (mod1) ... {file} {file} {file} {file}Ignored