
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Heres an example trade
Hi,
Just thought I'ld put up a screen shot here for any ideas about this inidcator
Cheers
Sal
Shi Silvertrend
I like what this indie does, but it repaints and does not refresh itself. You have to switch timeframes for this to happen (unless you have a newer version). It can be much more functional on the big timeframes. Based on my testing, I wouldn't recommend using it below the 4 hr and without other confirming indicator(s). It appears you are using others as well.
See this thread: for it states:
" The guilty piece of code is this - parentheses removed as I couldn't post with them in:
for SH=1;SH<NB;SH++
MetaTrader indexes the most recent bar as 0, the next as 1, and so on. If you change this line to what it should be:
for SH=NB;SH >= 0; SH--
you'll see vastly different, but REAL, results.
Sorry for the longwindedness. In summary, if you do use SHI_SilverTrend I'd recommend you re-evaluate. If you don't use SHI_SilverTrend this probably make any sense at all."
I have edited this portion of the code and am testing at present. I will let you know when I have any results with refreshing. I can deal with the repainting as I confirm with other indies but the refreshing is necessary.
Cheers
EA doesnt works
Here u go!
Run it on H1 chart - it will make 1 lot trades.
I didnt test it so u have to do it your self.
Hope this will help u.Hi Kalenzo,
sorry but this EA doesnt work, i dont know why.
2007.08.14 09:44:25 2007.04.20 17:00 SHI_SilverTrendSig AUDUSD,H1: ArrayInitialize function internal error
I dont know what he meens,
can somebody help me???
Tanks
gatowman
some idea
add
super signal (zagzig)
color stochastic (attch file below) fix some minor problem as if printed on chart is on arrow is on the wrong side
rule
super signal and SHI_SilverTrendSig print on chart
color stochastic change color and direction.
test it earlier today, quick 13 pip profit
see image below
yellow dot is sell alert, red is buy alert
Very Clean Chart...
add
super signal (zagzig)
color stochastic (attch file below) fix some minor problem as if printed on chart is on arrow is on the wrong side
rule
super signal and SHI_SilverTrendSig print on chart
color stochastic change color and direction.
test it earlier today, quick 13 pip profit
see image below
yellow dot is sell alert, red is buy alertHi mtuppers... your chart is very clean... easy to look at... could you let us know the list of indicators you put on it and the source to get them...
Thanks!
New to Forex
Hello,
I am new to Forex trading, though a friend give me few explanations but I think I need to hear from an expert. Kindly give the beginner's advice on:
1. How to start?
2. When to go into live trading and how much can put in first?
3. Money management, the indicators to use and how to use them?
4. All other information that will be relevant to a beginner.
Thank you as I look forward to reply.
Esoty.
Hi mtuppers... your chart is very clean... easy to look at... could you let us know the list of indicators you put on it and the source to get them... Thanks!
sorry EnkiJr for this late post you can found the system here at this post in ff
however you might want to read though the thread.
attached is mod version of shi-silvertrend alert. this one do update.
who ever want to make the ea please look over this new mod version
Same errors with this ea
Hi,
With this EA i get the same array error.
The signal codes are:
sig_buy=iCustom(NULL,0,"Good_SHI_SilverTrendSigAlert", 0, 6, 45.0, 0, 0, 0);
sig_sell=iCustom(NULL,0,"Good_SHI_SilverTrendSigAlert", 0, 6, 45.0, 0, 1, 0);
So i am guessing that the indicator is at fault. But where?
Cheers,
Ramy
Could someone fix this EA
Hi,
i am trying to create an EA for this Shi-silver trend, but i am stuck with a array function error comming from the indicator.
If someone could just make this EA place a Buy when the dot appears at the bottom like i want it to, i would finishe it up and post it here afterwerds.
It woul help me out to figure out why it is not buying or selling when a dot appears. Then i could complete the EA with the basic options.
In my code for the buy signal i have this:
//+------------------------------------------------------------------+
//| Variable Begin |
//+------------------------------------------------------------------+
double Buy1_1 = iHigh(NULL, 0, Current + 0);
double Buy1_2 = iCustom(NULL, 0, "Good_SHI_SilverTrendSigAlert", 0,2,9.0, 0, Current + 0);
//+------------------------------------------------------------------+
//| Signal Begin(Entry) |
//+------------------------------------------------------------------+
if (Buy1_1 > Buy1_2) Order = SIGNAL_BUY;
I included a screenshot of the error, and the mq4 files.
thank you in advance.
I Know that for an experienced coder it would take about 15-20 mminutes to figure it out. I have been trying for a week now with no avail.
cheers,
Ramy
Hi,
i am trying to create an EA for this Shi-silver trend, but i am stuck with a array function error coming from the indicator.
If someone could just make this EA place a Buy when the dot appears at the bottom like i want it to, i would finished it up and post it here afterwards.
It would help me out to figure out why it is not buying or selling when a dot appears. Then i could complete the EA with the basic options.
In my code for the buy signal i have this:
//+------------------------------------------------------------------+
//| Variable Begin |
//+------------------------------------------------------------------+
double Buy1_1 = iHigh(NULL, 0, Current + 0);
double Buy1_2 = iCustom(NULL, 0, "Good_SHI_SilverTrendSigAlert", 0,2,9.0, 0, Current + 0);
//+------------------------------------------------------------------+
//| Signal Begin(Entry) |
//+------------------------------------------------------------------+
if (Buy1_1 > Buy1_2) Order = SIGNAL_BUY;
------------------------------------------------------------------------------
I included a screenshot of the error, and the mq4 files. thank you in advance.
I Know that for an experienced coder it would take about 15-20 mminutes to figure it out. I have been trying for a week now with no avail.
cheers, RamyHi Ramy,
1) The indicator you attached "Decompiled - SHI_SilverTrendSigAlert"
is not the one your EA uses.
Your EA calls for the indicator named - "Good_SHI_SilverTrendSigAlert".
I did a quick TSD/Google search and did not find it. Please upload this indicator so others can duplicate the problem and help you find a solution.
2) Re: Buy and Sell - Your EA currently only does Buy's. There is no Sell logic code.
3) I found a few SilverTrend EA's here on TSD. Search for these EA's and check out their code. They will help you improve your own EA.
Hope this helps you,
Robert