Forex



Go Back   Forex Trading > Downloads > Manual trading systems
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #511 (permalink)  
Old 08-16-2006, 01:11 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,058
Blog Entries: 241
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 serdar
hii ND

is there EA of that systems? And is EA differ for different TF?

if you posted before in this forum pages please give e link for EA
Somebody created EA posted on this thread. It was long time ago. I did not check it yet.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #512 (permalink)  
Old 08-17-2006, 10:27 AM
vin vin is offline
Junior Member
 
Join Date: Aug 2006
Posts: 16
vin is on a distinguished road
automated system

Has anyone thought of making an automated system for teh asctrend indicator. buy signal with up arrow and sell signal with down arrow
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #513 (permalink)  
Old 08-17-2006, 05:22 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,058
Blog Entries: 241
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
Just for some people who want to start with something reading this thread.

Easy ASCTrend system.
Very easy.

Indicators and template are attached.
M5 timeframe.

And use e-Trailing.mq4 EA (attached).

Rules are very simple - see images.

To have alarm please change SoundON to 1 in ASCTrend indicator.
Attached Images
File Type: gif easy_asctrend.gif (20.0 KB, 1557 views)
File Type: gif easy_asctrend1.gif (22.3 KB, 1546 views)
File Type: gif easy_asctrend2.gif (29.2 KB, 1607 views)
Attached Files
File Type: zip easy_asctrend.zip (4.4 KB, 1097 views)
File Type: mq4 e-Trailing.mq4 (3.0 KB, 778 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #514 (permalink)  
Old 08-17-2006, 09:06 PM
Member
 
Join Date: Apr 2006
Posts: 32
skinnypig is on a distinguished road
Quote:
Originally Posted by newdigital
No paint - no problem.
Means if indicator is not confirming buy or sell so we don't have any problem with it because we are not trading in this case.
Hi NewDigital,
Many thanks always.
sincerely,
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #515 (permalink)  
Old 08-17-2006, 09:09 PM
Junior Member
 
Join Date: Jul 2006
Posts: 21
akil is on a distinguished road
Brilliant ND, I was following this system from a begining, really nice.
I'll try this 5m system imidiately, looks good so far.
Thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #516 (permalink)  
Old 08-17-2006, 09:42 PM
Junior Member
 
Join Date: Aug 2006
Posts: 14
serdar is on a distinguished road
Hii ND

EA for M5 is not worked is there any adjustment in my meta?

Thanks in advance
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #517 (permalink)  
Old 08-18-2006, 09:40 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,058
Blog Entries: 241
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 serdar
Hii ND

EA for M5 is not worked is there any adjustment in my meta?

Thanks in advance
It will not be very difficult to create EA for this easy asctrend system on M5 timeframe because:

- NRTR_color_line indicator is using ATR indicator;

- ASCTrend indicator is using the following:
Code:
int ASCTrend( int risk )
{

   double smin, smax, bsmin, bsmax;

   smin=Low[Lowest(NULL,0,MODE_LOW,9,1)]; 
   smax=High[Highest(NULL,0,MODE_HIGH,9,1)];

   bsmax = smax-(smax - smin)*(33.0-risk)/100.0;
   bsmin = smin+(smax - smin)*(33.0-risk)/100.0;

   asctrend = asctrend1;
   
   if(Close[1]>bsmax)  asctrend= 1; 
   if(Close[1]<bsmin)  asctrend=-1;
   
   asctrend1 = asctrend;
  return(asctrend);
and

Code:
bool ASCtrendBuy  = ASCtrend>0 && ASCtrend1<0;  
bool ASCtrendSell = ASCtrend<0 && ASCtrend1>0;
I will try to create this simple EA when I will have a time. Or somebody may do it (because I am not good coder ).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #518 (permalink)  
Old 08-18-2006, 09:58 AM
cubesteak's Avatar
Senior Member
 
Join Date: Jul 2006
Location: Southern California
Posts: 160
cubesteak is on a distinguished road
CountBars?

Hi ND,

Can you confirm that the CountBars in the Asctrend indicator is just the number of bars to paint backwards?

Meaning, that changing CountBars to say "10", wouldn't actually change the placement of a signal, but rather, the indicator would only calculate the last 10 bars for a signal...

Is that correct?

Thanks!

-CS
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #519 (permalink)  
Old 08-18-2006, 10:40 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,058
Blog Entries: 241
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 cubesteak
Hi ND,

Can you confirm that the CountBars in the Asctrend indicator is just the number of bars to paint backwards?

Meaning, that changing CountBars to say "10", wouldn't actually change the placement of a signal, but rather, the indicator would only calculate the last 10 bars for a signal...

Is that correct?

Thanks!

-CS
Not exactly like this.
I am not good coder but I see something in the code:

Code:
if (CountBars>=1000) CountBars=950;
SetIndexDrawBegin(0,Bars-CountBars+11+1);
SetIndexDrawBegin(1,Bars-CountBars+11+1);
As i understand this indicator is starting to draw not from Bars-CountBars ("Bars" is number of bars visible on the chart). It was started from 11+1. So if you set CountBars as 10 so nothing will be happened.

And this CountBars is everywhere inside the code.

But I am not sure as i am not a coder.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #520 (permalink)  
Old 08-18-2006, 03:03 PM
Member
 
Join Date: Mar 2006
Posts: 30
ejpdl is on a distinguished road
RE NRTR Color Line and Non Lag MA vs5

Hi ND
Thanks so much for all your hard work and contributions You are a star! I have been following all your systems Could I check with you - the 30 min system with the Nonlag MA vs 5 - should it use less resources than vs 4?
Also, with the new 5 min system how would you use the NRTR Color line for entries/exits It is not very clear to me?
Thanx
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
ABSOLUTE STRENGTH, ACSTrend, asc trend, ASC trend ea, asc trend forex, ASC Trend system, ASCTrend, asctrend 1.7 ea, ASCTrend ea, asctrend expert advisor, asctrend for metatrader, asctrend forex, asctrend manual, asctrend metatrader, asctrend mq4, asctrend mt4, ASCTrend NinjaTrader, ASCTrend system, ASCTrend.mq4, asctrend1, ASCTrend1sig, asctrend2, AsctrendBuySellExpert, ATRStops, auto_optimization.mqh, Fisher_v1, forex, forex tsd asctrend, kgsp indicator, lab trend, labtrend, labtrend ea, labtrend mq4, labtrend1, LabTrend1_v1.mq4, LabTrend1_v2, labtrend2, metatrader asctrend, nonlag, NonLagMA, nonlagma ea, nonlagma indicator, nonlagma v7.1, nrtr line, perky asctrend, perky Asctrend1, pricechannel_signal, pricechannel_signal_v1, PriceChannel_Stop_v1.3, rsi filter, search, Sidus, system, trend, trendtriggermod, williams percent range


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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 Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
ASCTREND Expert that works!!! nikorivera Expert Advisors - Metatrader 4 1 09-13-2007 11:44 AM
BTSystem - ASCTrend System Duke Nukem General Discussion 9 12-22-2005 06:32 PM


All times are GMT. The time now is 02:44 PM.



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