Forex
Google
New signals service!

Go Back   Forex Trading > Downloads > Indicators - Metatrader 4


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack (8) Thread Tools Display Modes
  #31 (permalink)  
Old 03-16-2006, 12:07 PM
Administrator
 
Join Date: Sep 2005
Posts: 15,986
Blog Entries: 70
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Well.
Sell story was finished now.
Now is buy story.
Market is still sleeping so I think this situation will be like this until some new wil come and speed the price movement.

It was example how to use this SHI_SilverTrendsig indicator.
Attached Images
File Type: gif 14.gif (24.1 KB, 1760 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #32 (permalink)  
Old 03-22-2006, 11:51 AM
forextrend's Avatar
Senior Member
 
Join Date: Nov 2005
Posts: 115
forextrend is an unknown quantity at this point
Thumbs up

thanksssssssssssss

Last edited by forextrend; 03-22-2006 at 09:05 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #33 (permalink)  
Old 03-28-2006, 01:11 AM
tweedy48's Avatar
Junior Member
 
Join Date: Mar 2006
Posts: 2
tweedy48 is on a distinguished road
SHI_SilverTrendsig indicator alert??

Would it be possible to put a verbal alert when the indicator gives a buy or sell signal?
Thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #34 (permalink)  
Old 04-21-2006, 02:17 PM
Junior Member
 
Join Date: Mar 2006
Posts: 14
positive pips is on a distinguished road
asc sound signal alert

The indicator for asc is set to sound a alert at the risk of 3 as a default. When the risk is changed to 10 the arrows change to the new settings on the chart but the sound will not work on the risk change. Asc set at 3 too many false signals 10 is good and even higher in some pairs but I need to here the alert at the higher setting will someone help or know of an asc indicator that will sound at the setting of the risk. Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #35 (permalink)  
Old 05-26-2006, 05:27 PM
Senior Member
 
Join Date: Mar 2006
Posts: 509
moneyline is on a distinguished road
Hi,

I'm looking for ASCTrend3, perhaps newdigital has got it, or knows where it can be located?

Much appreciated and thanks!

moneyline
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #36 (permalink)  
Old 05-26-2006, 05:36 PM
Administrator
 
Join Date: Sep 2005
Posts: 15,986
Blog Entries: 70
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by moneyline
Hi,

I'm looking for ASCTrend3, perhaps newdigital has got it, or knows where it can be located?

Much appreciated and thanks!

moneyline
Use LabTrend3 (in Manual trading system section, asctrend thread).
I will look at original ASCTrend3 tomorrow.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #37 (permalink)  
Old 05-26-2006, 11:06 PM
Senior Member
 
Join Date: Mar 2006
Posts: 509
moneyline is on a distinguished road
Thanks Newdigital,

You're super!

moneyline
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #38 (permalink)  
Old 08-29-2006, 09:41 PM
Junior Member
 
Join Date: Aug 2006
Posts: 3
asaaadmy is on a distinguished road
another SHI_SilverTrendSig problem

Quote:
Originally Posted by erwinkoe
Can anyone fix the SHI_SilverTrendsig? The signal keeps appearing at the bar before current bar. I think it's a bug or something. Btw, the signal is very good.
Can someone please explain why this indicator does not update itself automatically. It will give you the sell and buy dots when you first attach it to the chart but then it will not follow the chart movement and will not give any more dots.

An idea please. The indicator is SHI_SilverTrendSig.mq4 and I insert it below.

Many thanks. Please see below:
************************************************** *****
#property copyright "Copyright © 2005, Shurka"
#property link "http://shforex.narod.ru"

#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Red
#property indicator_color2 Blue
#define SH_BUY 1
#define SH_SELL -1

//---- Входные параметры
extern int AllBars=0;//How many bars should be counted. 0 - all the bars.
extern int Otstup=30;//Step back.
extern double Per=9;//Period.
int SH,NB,i,UD;
double R,SHMax,SHMin;
double BufD[];
double BufU[];
//+------------------------------------------------------------------+
//| Функция инициализации |
//+------------------------------------------------------------------+
int init()
{
//We will write the number of the bars for which we are counting to the NB
if (Bars<AllBars+Per || AllBars==0) NB=Bars-Per; else NB=AllBars;
IndicatorBuffers(2);
IndicatorShortName("SHI_SilverTrendSig");
SetIndexStyle(0,DRAW_ARROW,0,1);
SetIndexStyle(1,DRAW_ARROW,0,1);
SetIndexArrow(0,159);
SetIndexArrow(1,159);
SetIndexBuffer(0,BufU);
SetIndexBuffer(1,BufD);
SetIndexDrawBegin(0,Bars-NB);//This indicator will be shown for NB bar only
SetIndexDrawBegin(1,Bars-NB);
ArrayInitialize(BufD,0.0);//Give a lot of "zero" to the buffe. Otherwise it will be garbage during the changing of time frame.
ArrayInitialize(BufU,0.0);
return(0);
}
//+------------------------------------------------------------------+
//| Функция деинициализации |
//+------------------------------------------------------------------+
int deinit()
{
return(0);
}
//+------------------------------------------------------------------+
//| Собсна индикатор |
//+------------------------------------------------------------------+
int start()
{
int CB=IndicatorCounted();
/* It is the optimization option. We have the function here which restore/return the number of counted bars in very special way.
During the first indicator's call we have 0: it is normal because it was not counted anything,
and then we receive the number of bars minus 1. For example, if the number of bars equal 100,
we will have 99. I did it especially, you may see that NB is the number of bars whioch should be counted.
You know we may throw out this parameter. But for the people who understand we may keep it. So, during the first call
of indicator this NB is the same one but during the 2dn etc calls - reducing the value up to the last bar,
That is 1 or 2 for example*/
if(CB<0) return(-1); else if(NB>Bars-CB) NB=Bars-CB;
for (SH=1;SH<NB;SH++)//comb out the chart from 1 to NB
{
for (R=0,i=SH;i<SH+10;i++) {R+=(10+SH-i)*(High[i]-Low[i]);} R/=55;

SHMax = High[Highest(NULL,0,MODE_HIGH,Per,SH)];
SHMin = Low[Lowest(NULL,0,MODE_LOW,Per,SH)];
if (Close[SH]<SHMin+(SHMax-SHMin)*Otstup/100 && UD!=SH_SELL) { BufU[SH]=Low[SH]-R*0.5; UD=SH_SELL; }
if (Close[SH]>SHMax-(SHMax-SHMin)*Otstup/100 && UD!=SH_BUY) { BufD[SH]=High[SH]+R*0.5; UD=SH_BUY; }
}
return(0);
}

************************************************** *****
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #39 (permalink)  
Old 08-30-2006, 08:31 AM
Administrator
 
Join Date: Sep 2005
Posts: 15,986
Blog Entries: 70
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by asaaadmy
Can someone please explain why this indicator does not update itself automatically. It will give you the sell and buy dots when you first attach it to the chart but then it will not follow the chart movement and will not give any more dots.

An idea please. The indicator is SHI_SilverTrendSig.mq4 and I insert it below.

Many thanks. Please see below:
...
int CB=IndicatorCounted();
/* It is the optimization option. We have the function here which restore/return the number of counted bars in very special way.
During the first indicator's call we have 0: it is normal because it was not counted anything,
and then we receive the number of bars minus 1. For example, if the number of bars equal 100,
we will have 99. I did it especially, you may see that NB is the number of bars whioch should be counted.
You know we may throw out this parameter. But for the people who understand we may keep it. So, during the first call
of indicator this NB is the same one but during the 2dn etc calls - reducing the value up to the last bar,
That is 1 or 2 for example*/
...
asaaadmy,

Seems you are using indicator with my translation. I translated comments from Russian. I did not change anything. As i remember the author is using different calculation and because of that this indicator is not re-freashing (see author comments above which I translated many months ago).
I have no idea how to fix it. But I'm affraid that if we fix it this indicator will not be so attractive. Anyway it is very difficult to use this indicator.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #40 (permalink)  
Old 09-13-2006, 10:54 AM
Linuxser's Avatar
Moderator
 
Join Date: May 2006
Location: Helliconia (Winter)
Posts: 2,512
Blog Entries: 10
Linuxser has disabled reputation
V2

Test this version.

A couple of entrepreneurs and worried traders did an excelent job looked for a solution.
Attached Files
File Type: mq4 SHI_SilverTrendSig-2.mq4 (3.9 KB, 678 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/indicators-metatrader-4/130-signal-systems-asctrend-other-modification.html
Posted By For Type Date
SHI Anzeiger - Forex Handel This thread Refback 03-05-2008 12:08 PM
Закладки пользователя fadeevbiz на Memori.ru This thread Refback 02-02-2008 01:43 AM
Закладки пользователя fadeevbiz на Memori.ru This thread Refback 12-20-2007 11:24 AM
Закладки пользователя fadeevbiz на Memori.ru This thread Refback 11-10-2007 09:34 AM
Forex trading strategies - Page 11 - Talkgold HYIP, Investment & Money Forum This thread Refback 07-10-2007 05:22 PM
USS Forex Classes - Page 39 - Nogold.com This thread Refback 07-04-2007 03:09 AM
USS Forex Classes - Page 62 - Nogold.com This thread Refback 07-03-2007 06:24 AM
USS Forex Classes - Page 40 - Nogold.com This thread Refback 06-23-2007 09:30 PM

Similar Threads
Thread Thread Starter Forum Replies Last Post
Parabolic SAR Modification Tickwatcher Indicators - Metatrader 4 20 10-05-2007 10:39 PM
Signal systems (ASCTrend and other modification) newdigital Indicators - Metatrader 3 14 02-18-2006 12:25 PM
Tooltip modification charliev Metatrader 4 4 02-08-2006 09:57 PM


All times are GMT. The time now is 10:06 PM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.