Page 8 of 424
Re: Something interesting please post here (Metatrader)
Posted: Wed Mar 22, 2017 6:49 pm
by armchairtycoon
braciola719 wrote: Wed Mar 22, 2017 6:44 pm
Unfortunately the trading mode would have :: when both averages cross zero is it change of trend, or is it designed when they are over sold or vice versa ?? sorry english
When both cross zero level in the system. Uno bibo
Re: Something interesting please post here (Metatrader)
Posted: Wed Mar 22, 2017 6:56 pm
by mladen
braciola719 wrote: Wed Mar 22, 2017 6:44 pm
Unfortunately the trading mode would have :: when both averages cross zero is it change of trend, or is it designed when they are over sold or vice versa ?? sorry english
Set all levels to 0 in parameters
Re: Something interesting please post here (Metatrader)
Posted: Wed Mar 22, 2017 7:45 pm
by braciola719
Thank you grazie
Re: Something interesting please post here (Metatrader)
Posted: Thu Mar 23, 2017 9:53 am
by Simba
FX10 Setup - true non repainting arrow indicator for MT4
Interesting indicator
Useful in all timeframes, even M1 (1 minute), does not repaint nor redraws once the candlestick is closed, it is very good for avoiding premature entries, avoiding catching falling knives, good not perfect, not a complete system,may be used for exits too.
The way I use it is modifying the Parameter Multiplier to 9 or 10 (of course feel free to experiment) and then WAIT until the last arrow has printed before considering an entry, see pic, next bar after last Magenta arrow consider entry long, next bar after last Aqua for shorts...
Very good as an exhaustion signaller, specially after fast and furious moves...See pics for both M1 and Weekly timeframes with the same settings
I think that the intention of its designers was for it to signal entries at the first arrow (hence the arrows direction), it is composed of several oscillators with a moving average filter, and I have found it is way better at signalling potential exhaustion after last arrow has printed
S
Re: Something interesting please post here (Metatrader)
Posted: Fri Mar 24, 2017 7:54 am
by tampa
3 timeframe Stochastic in 1 indicator
Re: Something interesting please post here (Metatrader)
Posted: Mon Mar 27, 2017 6:43 am
by tampa
Power Weighted Moving Average MTF
Calculation:
PWMA = SUM(Applied price(i) * (i^Power), Period) / SUM(i^Power, Period
If Power is 1, МА is identical to LWMA
Re: Something interesting please post here (Metatrader)
Posted: Tue Mar 28, 2017 8:28 am
by yuhu
hi K, are the arrows repainting? Thank you'
knaimad wrote: Tue Mar 21, 2017 9:17 pm
and some variation on the subject:
Re: Something interesting please post here (Metatrader)
Posted: Wed Mar 29, 2017 2:55 pm
by knaimad
yuhu wrote: Tue Mar 28, 2017 8:28 am
hi K, are the arrows repainting? Thank you'
Here is the code for arrows:
Code: Select all
if (i<Bars-1 && trend[i] != trend[i+1])
{
upa[i] = (trend[i] == 1) ? (low[i]-arrowsGapUp*iATR(NULL,0,20,i)) : EMPTY_VALUE;
dna[i] = (trend[i] ==-1) ? (high[i]+arrowsGapDn*iATR(NULL,0,20,i)) : EMPTY_VALUE;
}
It means that arrows appear as soon as the trend changes, and the code does not change previous values.
Re: Something interesting please post here (Metatrader)
Posted: Thu Mar 30, 2017 12:57 am
by TEAMTRADER
ADR (Average Daily Range) indicator
This ADR indicator shows:
- Weekly high
- Weekly low
- Extensions plus;
- Mid levels
TEAMTRADER
Re: Something interesting please post here (Metatrader)
Posted: Sat Apr 01, 2017 12:45 am
by bilbao
ea trilling on Equity It is very convenient and useful tool for those who have no time to sit behind the monitor, or if you just want to while getting a certain income, fix it and close all open orders on the account.\
setting:
Total_Profit_Start // Amount in USD from which to start trilling on profit
Profit_Percent //% Percentage of Profit for the start of the trilling
Profit_Rollback //% Percentage rollback to close all orders
EXAMPLE :
If the equity of less than $ 5000 the trilling does not work, and monitors the situation in the long run.
If we gained 1% in excess of $ 5000, ie 5005 $ then sweep into operation and at 0.5% retracement, ie, at 5002.5 will close all positions.
Equity increased if for example, up to 5010 it will close at 5005 .... etc.
trilling works on all positions of the account, not dividing by magic and by currencies. That is, all orders are taken into consideration, for all currency pairs open at the moment.