Evaluator
Ci/symphonie extreme similarity explained! 144 replies
Symphonie/Cobra Hybrid System 4 replies
Symphonie trader or Genesis matrix 1 reply
Symphonie Trader System EA 73 replies
Yet another set of Symphonie Indicators 241 replies
QuoteDislikedEntry : Extreme pike color change (confirmed after at least 4 bars) with the same color on Sentiment, Emotion and Trendline. Stop orders preferred with a margin of 7 pips. Timeframe M5.
Hours : between 7 AM GMT and 9 PM GMT (EURO and US session).
Order management : 50 pips stoploss, 30 pips be and 3 pips beg, then tsl 10 step 1 (for M5). M15 : 75 pip Stoploss, H1 : 100 pips sl.
Money management : "Account Ratio System" 0.1 lot (in total) per 1k.
QuoteDislikedExit : At trendline change (conservative). Or half at extreme change, then half at trendline (moderate). Or all color change + additionnal indicator (?; agressive).
QuoteDislikedM5 signal.
H1 filter, all the indicators have the same color.
Hours : between 8 AM GMT and 3 PM GMT.
Both buy stop and sell stop on big spike (?).
Trailing stop loss on Trendline (?).
Wait for the second M5 signal, it has to be higher/lower than the previous buy/sell signal for long/short.
Addition of A-B-C wave filter (?).
Addition of TVI and stochastics (?)
Possible use of renko (?).
Settings : PriceActionFilter of Extreme set to 2 or 3 (?).
CCIPeriod of Trendline set to 20-35 Points (periods).
Disliked@Evaluator Just to confirm On entries, do you wait for all the colors to line up on the 1 hour chart , then you move to the 15 min and wait for the same thing ? On exits , do you exit on a color change on the 15 min chart or 1 hour chart ?Ignored
DislikedHello guys, where can I find the latest indicators that uses Elevator? Because in the first post there is version 4 but only 3? I wanted to know also about which cross is used this strategy. Thank youIgnored
Disliked{quote} Thank you for the reply , regarding the version 4 is there a way to setup a push, email alert as soon as all 4 colors change to one color in the settings?Ignored
DislikedHi Eval, First let me say congratulations on the your system. It looks very promising and I would like to test it. I am trying to set up three different Matrix indis on the same H4 chart: M15, H1 and H4. However M15 and H1 display the same info and only the bottom row on H4 is different. The other three rows of H4 display the same as M15 and H1. I have set ForceTimeFrame on each of the three indis to 15, 60 and 240 respectively. Then I set the M15 settings of the top indi to your M15 optimized settings as showed in the first picture. Then I set...Ignored
void OnTick()
{
//BUY
if(SymphonieBuy(60))
{
Alert("All Symphonie bars are BUY");
}
//SELL
if(SymphonieSell(60))
{
Alert("All Symphonie bars are SELL");
}
}
double GetSymphonie(int buffer, int shift = 0, int timeframe = 60)
{
return(iCustom(Symbol(), timeframe, "Symphonie_Matrix_Indikator_v4.4h", true, buffer, shift));
}
bool SymphonieBuy(int timeframe = 60)
{
// @own Symphonie filter
double symph_extr_b = GetSymphonie(0,0,timeframe);
double symph_tren_b = GetSymphonie(2,0,timeframe);
double symph_emot_b = GetSymphonie(4,0,timeframe);
double symph_sent_b = GetSymphonie(6,0,timeframe);
if(symph_extr_b > 0 && symph_tren_b > 0 && symph_emot_b > 0 && symph_sent_b > 0)
{
return true;
}
else
{
return false;
}
}
bool SymphonieSell(int timeframe = 60)
{
// @own Symphonie filter
double symph_extr_s = GetSymphonie(1,0,timeframe);
double symph_tren_s = GetSymphonie(3,0,timeframe);
double symph_emot_s = GetSymphonie(5,0,timeframe);
double symph_sent_s = GetSymphonie(7,0,timeframe);
if(symph_extr_s > 0 && symph_tren_s > 0 && symph_emot_s > 0 && symph_sent_s > 0)
{
return true;
}
else
{
return false;
}
} DislikedHi Mustafa, This should work void OnTick() { //BUY if(SymphonieBuy(60)) { Alert("All Symphonie bars are BUY"); } //SELL if(SymphonieSell(60)) { Alert("All Symphonie bars are SELL"); } } double GetSymphonie(int buffer, int shift = 0, int timeframe = 60) { return(iCustom(Symbol(), timeframe, "Symphonie_Matrix_Indikator_v4.4h", true, buffer, shift)); } bool SymphonieBuy(int timeframe = 60) { // @own Symphonie filter double symph_extr_b = GetSymphonie(0,0,timeframe); double symph_tren_b = GetSymphonie(2,0,timeframe); double symph_emot_b = GetSymphonie(4,0,timeframe);...Ignored
double GetSymphonie(int buffer, int shift = 0, int timeframe = 60)
{
return(iCustom(Symbol(), timeframe, "Symphonie_Matrix_Indikator_v4.4h",
//Here you put the external settings in the same order as in the Symphonie settings
true,false,false,false,60,"",false,"",20,35,15,
buffer, shift));
}