What has hapened to this thread?!
Sidus-EMA RSI & Sidus V3 indicators that need to be fixed 18 replies
New Sidus Method v2.0 186 replies
Sidus System confirmation' indicator? 52 replies
New Sidus Method v2.0 is available 6 replies
Quoting Vince-ACDislikedwas wondering same thing, i hope they didn't start a chat room. that usually kills most good threadsIgnored
Quoting rav700DislikedDo I see an opening trade for cable...on the basis of sidhus........
According to the indicators we should be short at this time so I am short @1.8996 with a stop @ 1.9030 profit.well target 30 pips
Ignored
Quoting heriyadiDislikedI don't see the same opening, what TF do you use? can you post your chart?Ignored
Quoting rosso832DislikedCan anyone help me with setting up 18 EMA & 28 EMA indicators? I use MT 4. Attachment would be very helpful. Thx in advanceIgnored
Quoting rav700DislikedI dont know if I am using the indicators properly please can you help sidhu.....
With some kind of revision or MT4 Indicator
The one that I have got is attatched is this the right oneIgnored
Quoting MoneyMa$terDislikedYes that's the correct one. It uses the 5/12 ema and 18/28 ema with dots and arrows to signal buy and sell opportunities.Ignored
Quoting MoneyMa$terDislikedYes that's the correct one. It uses the 5/12 ema and 18/28 ema with dots and arrows to signal buy and sell opportunities.Ignored
Quoting oakieDislikedI think the 5/12 are wma's and not ema's. Please correct me if I am wrong.Ignored
Quoting heriyadiDislikedI know we use 1 H TF for Sidus, but is this system works with other TF?Ignored
Quoting MoneyMa$terDislikedThe indicator uses EMAs. What follows is an excerpt of that code:
// Original Sidus Method filtered with RSI and CCI.
// Edited by Anthony Pham using EMA-Crossover_Signal.mq4 as a
// template.
//(Jason Robinson, jnrtrading, http://www.jnrtrading.co.uk)
/*
+------------------------------------------------------------------+
| Shows an arrow when there is a Sidus signal. Shows dots when |
| the Sidus tunnel crosses. Blue dot confirms uptrend. Red dot |
| confirms downtrend. Alerts on Sidus signal by default - Sounds |
| alert and sends e-mail. |
+------------------------------------------------------------------+
*/
extern bool Alerts = true;
extern bool Tunnel_Alerts= false;
extern bool Email_Alerts = false;
#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 Aqua
#property indicator_color2 Red
#property indicator_color3 Blue
#property indicator_color4 Red
#property indicator_width1 1
#property indicator_width2 1
#property indicator_width3 1
#property indicator_width4 1
double CrossUp[];
double CrossDown[];
double Tup[];
double Tdown[];
bool DownTunnel = false;
bool UpTunnel = false;
bool Signal = false;
extern int FasterEMA = 5;
extern int SlowerEMA = 12;
extern int FasterSidusEMA = 18;
extern int SlowerSidusEMA = 28;Ignored
Quoting CrestwindDislikedDoes anyone else use this system on other pairs besides the EUR/USD and the EUR/GBP? If so what have your results been.
And whats this I hear about 5/12 EMA I have been using the 5/8 WMA to test it.........Ignored
Quoting JOBrayDislikedThe SIDUS method incorporates the use of the 5 and 12 WMA, not EMA. Read back and you will find that SIDUS uses WMA to judge price movement sooner. The original method was with the 5 and 8 WMA. Of course you use the 12 and 28 EMA for the tunnel.
Some others have talked about 5 and 12 EMA, but SIDUS reemphasizes the use of 5 and 12 WMA.
The method works for other pairs, but stay with the 1 hour time frame.Ignored