Forex
Google
New signals service!

Go Back   Forex Trading > Trading systems > Brain Systems


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 (31) Thread Tools Display Modes
  #271 (permalink)  
Old 06-23-2006, 11:48 AM
Junior Member
 
Join Date: Jun 2006
Posts: 6
rhmyee is on a distinguished road
Quote:
//+------------------------------------------------------------------+
//| iTrend.mq4 |
//| Copyright 2004, MetaQuotes Software Corp. |
//| http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright "Copyright 2004, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net"

#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 DarkKhaki
#property indicator_color2 Red
//---- input parameters
extern int Bands_Mode_0_2=0; // =0-2 MODE_MAIN, MODE_LOW, MODE_HIGH
extern int Power_Price_0_6=0; // =0-6 PRICE_CLOSE,PRICE_OPEN,PRICE_HIGH,PRICE_LOW,PRICE_ MEDIAN,PRICE_TYPICAL,PRICE_WEIGHTED
extern int Price_Type_0_3=0; // =0-3 PRICE_CLOSE,PRICE_OPEN,PRICE_HIGH,PRICE_LOW
extern int Bands_Period=20;
extern int Bands_Deviation=2;
extern int Power_Period=13;
extern int CountBars=300;
//---- buffers
double value[];
double value2[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
// string short_name;
//---- indicator line
IndicatorBuffers(2);
SetIndexStyle(0,DRAW_HISTOGRAM);
SetIndexStyle(1,DRAW_HISTOGRAM);
SetIndexBuffer(0,value);
SetIndexBuffer(1,value2);
//----

//----
return(0);
}
//+------------------------------------------------------------------+
//| Trend |
//+------------------------------------------------------------------+
int start()
{
SetIndexDrawBegin(0,Bars-CountBars+Bands_Period+1);
SetIndexDrawBegin(1,Bars-CountBars+Bands_Period+1);
int i,CurrentBar,Bands_Mode,counted_bars=IndicatorCoun ted();
double Power_Price,CurrentPrice;
//----
if(Bars<=Bands_Period) return(0);
//---- initial zero
if(counted_bars<Bands_Period)
{
for(i=1;i<=Bands_Period;i++) value[Bars-i]=0.0;
for(i=1;i<=Bands_Period;i++) value2[Bars-i]=0.0;
}
//----
i=CountBars-Bands_Period-1;
// if(counted_bars>=Bands_Period) i=Bars-counted_bars-1;


if (Bands_Mode_0_2==1) Bands_Mode=MODE_LOW;
if (Bands_Mode_0_2==2) Bands_Mode=MODE_HIGH;
if (Bands_Mode_0_2==0) Bands_Mode=MODE_MAIN;

if (Power_Price_0_6==1) Power_Price=PRICE_OPEN;
if (Power_Price_0_6==2) Power_Price=PRICE_HIGH;
if (Power_Price_0_6==3) Power_Price=PRICE_LOW;
if (Power_Price_0_6==4) Power_Price=PRICE_MEDIAN;
if (Power_Price_0_6==5) Power_Price=PRICE_TYPICAL;
if (Power_Price_0_6==6) Power_Price=PRICE_WEIGHTED;
if (Power_Price_0_6==6) Power_Price=PRICE_CLOSE;

for (i=CountBars-1; i>=0; i--)
{
if (Price_Type_0_3==1) CurrentPrice=Open[i];

if (Price_Type_0_3==2) CurrentPrice=High[i];

if (Price_Type_0_3==3) CurrentPrice=Low[i];
if (Price_Type_0_3==0) CurrentPrice=Close[i];

value[i]=CurrentPrice-iBands(NULL,0,Bands_Period,Bands_Deviation,0,Bands _Mode,Power_Price,i);
value2[i]=-(iBearsPower(NULL,0,Power_Period,Power_Price,i)+iB ullsPower(NULL,0,Power_Period,Power_Price,i));

}


return(0);
}
//+------------------------------------------------------------------+
when i open in meta editor, just this one appear.. and i click compile nothing happen.. can u help me..i'm using nortfinace platform (demo account)..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #272 (permalink)  
Old 06-23-2006, 12:56 PM
Administrator
 
Join Date: Sep 2005
Posts: 16,270
Blog Entries: 106
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
After compiling you should have this indicator in Navigator panel (see image).
Make sure that you place this indicator in /indicator folder.
Attached Images
File Type: gif itrend.gif (42.7 KB, 487 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #273 (permalink)  
Old 06-23-2006, 01:15 PM
Junior Member
 
Join Date: Jun 2006
Posts: 6
rhmyee is on a distinguished road
ok...i see it frm u r reply...its advance already... can u guide me.. where to start frm the beginning...i mean how to use this BRAIN SYSTEM, the set up;the procedure..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #274 (permalink)  
Old 06-23-2006, 01:30 PM
Administrator
 
Join Date: Sep 2005
Posts: 16,270
Blog Entries: 106
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 rhmyee
ok...i see it frm u r reply...its advance already... can u guide me.. where to start frm the beginning...i mean how to use this BRAIN SYSTEM, the set up;the procedure..

There are two systems in this section:
- Brainwashing system; and
- Braintrading system (BrainSystem).

All the indicators and everything were posted already.
As I understand you are interesting in Brainwashing system.
For Brainwashing system start with this thread Brainwashing: system setup for trading manually and for EAs and read all the thread namely "Brainwashing ...".
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #275 (permalink)  
Old 07-25-2006, 07:13 PM
Junior Member
 
Join Date: Jul 2006
Posts: 13
srusli is on a distinguished road
alert setting

hello new digital

how to change the alert setting to work in different time frame in your mq4?

say in 1 / 5 minutes?

thank you
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #276 (permalink)  
Old 07-26-2006, 06:21 AM
Administrator
 
Join Date: Sep 2005
Posts: 16,270
Blog Entries: 106
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 srusli
hello new digital

how to change the alert setting to work in different time frame in your mq4?

say in 1 / 5 minutes?

thank you
The are Alarm and Id if I remember. So set Alart to 1 and UID to 1, the other indicator - Alarm to 1 (true) and ID to 2. Means different ID.

I am trying to come back to this system and this section.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #277 (permalink)  
Old 08-01-2006, 12:46 AM
Junior Member
 
Join Date: Apr 2006
Posts: 1
Robdizo is on a distinguished road
A question about the brain system...

If someone could provide me with a link as to what the indicators mean (ie blue dot, red arrow, cyan dot and such) i would appreciate that quite a bit... thanks


rob
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #278 (permalink)  
Old 08-01-2006, 07:02 AM
Administrator
 
Join Date: Sep 2005
Posts: 16,270
Blog Entries: 106
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 Robdizo
If someone could provide me with a link as to what the indicators mean (ie blue dot, red arrow, cyan dot and such) i would appreciate that quite a bit... thanks


rob
blue and other similar color is uptrend or buy signal or filter for buy. Red is for sell.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #279 (permalink)  
Old 08-18-2006, 04:31 AM
pipsnaper's Avatar
Junior Member
 
Join Date: Apr 2006
Posts: 25
pipsnaper is on a distinguished road
Thumbs up Questions for newdigital

I know you've heard this many times before, but I am new here and have to commend you and your team's kind dedication to the free education of others on profitable forex systems ! ! I have read this TSD BT thread and have applied the system to some 15M charts and must say it looks very promising as you have indicated. I do have some questions that I'd appreciate if you could answer...

for the 15M timeframe using TSD BT System:

1) Do we still use i-trend indicator to filter potential trades? Or can we rely on the BT signals combined with the XO indicator alone?

2) Can you please elaborate the "exit on SAR" strategy and please provide the SAR settings (I know you have them in the template but I'd like to know them so I can apply them without the template)

3) Can we enter a trade some bars later after a confirmed entry signal?

4) What do you think about this addition to the strategy: "If a signal bar closes in confirmation with the TSD BT rules but is longer than 25 pips on close then avoid that trade and wait for the next opportunity." The reason for this is that I have found many times when the confirmed signal candle is very lengthy then entry at the open of the next candle may not proof profitable.

Keep up the great work and Thank You!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #280 (permalink)  
Old 08-18-2006, 08:13 AM
Administrator
 
Join Date: Sep 2005
Posts: 16,270
Blog Entries: 106
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 pipsnaper
I know you've heard this many times before, but I am new here and have to commend you and your team's kind dedication to the free education of others on profitable forex systems ! ! I have read this TSD BT thread and have applied the system to some 15M charts and must say it looks very promising as you have indicated. I do have some questions that I'd appreciate if you could answer...

for the 15M timeframe using TSD BT System:

1) Do we still use i-trend indicator to filter potential trades? Or can we rely on the BT signals combined with the XO indicator alone?

2) Can you please elaborate the "exit on SAR" strategy and please provide the SAR settings (I know you have them in the template but I'd like to know them so I can apply them without the template)

3) Can we enter a trade some bars later after a confirmed entry signal?

4) What do you think about this addition to the strategy: "If a signal bar closes in confirmation with the TSD BT rules but is longer than 25 pips on close then avoid that trade and wait for the next opportunity." The reason for this is that I have found many times when the confirmed signal candle is very lengthy then entry at the open of the next candle may not proof profitable.

Keep up the great work and Thank You!
1. The problem with i-trend indicator is the following: this indicator is showing different value with different broker. Sometimes, not all the time. If i use alpari broker and you will use ibfx so we will have different trades in some cases. In was mentioned in Brainwashing threads in this section. So if somebody find the way to use the other indicator then i-trend so it will be good. As to XO indicator so it may be good bt when we create EA with this i-XO indicator so this EA is difficult to be backtested (because of I-XO indicator). BTW using i-trend is very easy way and tested during the many months already.

2. I don't rememer now about SAR. Probable I need to come back to this thread. Besides we will need to develop EAs so i will have to come back.

3. We are trading on the closed bar. It means that we enter on the next bar (next after confirmed signal bar).

4. Yes it may be good.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
trading

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

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/brain-systems/85-brainsystem-trading-system-development-trades.html
Posted By For Type Date
Spreadtrade2Win :: View topic - Multi Time Frame BT This thread Refback 03-16-2008 04:58 AM
TSDΥեؤΥ | 1ߤܻؤ This thread Refback 03-02-2008 05:01 AM
Forex Trading - View Single Post - BrainSystem: Trading... Post #51 Refback 02-15-2008 08:05 AM
forex...forex...forex - Kaskus - The Largest Indonesian Community This thread Refback 01-19-2008 08:16 AM
Spreadtrade2Win :: View topic - Multi Time Frame BT This thread Refback 01-18-2008 08:58 PM
راهنمای کامل Mql4 - Page 3 - انجمن تخصصی فارکس پارس This thread Refback 01-14-2008 06:07 PM
راهنمای کامل Mql4 - Page 3 - انجمن تخصصی فارکس پارس This thread Refback 01-14-2008 06:07 PM
راهنمای کامل Mql4 - Page 3 - انجمن تخصصی فارکس پارس This thread Refback 01-11-2008 04:57 PM
راهنمای کامل Mql4 - Page 3 - انجمن تخصصی فارکس پارس This thread Refback 01-11-2008 04:57 PM
请教如何解决海豚系统的信号钝化 - 「外汇交易」 - 『火线投资论坛』 外汇,外汇入门,外汇论坛,外汇社区,外汇保证金,外汇交易,投资,投资论坛,A股,股票 This thread Refback 01-10-2008 08:42 AM
йBrainTrend - ̳ - ̳ This thread Refback 12-23-2007 06:19 AM
Brain Trading System的交易策略 This thread Refback 12-20-2007 09:12 PM
forex...forex...forex - Kaskus - The Largest Indonesian Community This thread Refback 12-14-2007 10:00 AM
FXVXeg[h: Brain System This thread Refback 11-05-2007 08:38 PM
BrainSystem: Trading System Development and Trades - Page 5 - Forex Trading This thread Refback 10-19-2007 06:44 PM
Jual signal forex unlimited - Kaskus - The Largest Indonesian Community This thread Refback 10-13-2007 05:22 PM
Spreadtrade2Win :: View topic - Multi Time Frame BT This thread Refback 10-11-2007 03:05 PM
BrainSystem: Trading System Development and Trades - Page 3 - Forex Trading This thread Refback 10-10-2007 06:25 PM
BIG WAVE ¸ɬѥ This thread Refback 10-09-2007 05:31 PM
Brain Trading Indicator!! $39 - GoldAge Forums This thread Refback 10-08-2007 07:56 AM
йBrainTrend - ̳ - ̳ This thread Refback 10-07-2007 07:10 AM
FXVXeg[h: Brain System(1) This thread Refback 10-02-2007 08:33 AM
BrainSystem: Trading System Development and Trades - Page 11 - Forex Trading This thread Refback 09-27-2007 06:39 AM
Spreadtrade2Win :: View topic - Multi Time Frame BT This thread Refback 09-10-2007 11:22 PM
zeji808's bookmarks tagged with "forex" on del.icio.us This thread Refback 08-30-2007 08:51 AM
راهنمای کامل Mql4 - Page 3 - انجمن تخصصی فارکس ایران This thread Refback 08-24-2007 09:46 AM
̳ - Powered by Discuz! Board This thread Refback 08-16-2007 03:20 PM
νϵͳźŶۻ - 㽻ҡ - ̳ ̳,㱣֤ This thread Refback 07-17-2007 01:05 AM
BIG WAVE 200603 This thread Refback 06-27-2007 03:21 AM