Forex



Go Back   Forex Trading > Discussion Areas > Suggestions for Trading 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
 
Thread Tools Display Modes
  #1 (permalink)  
Old 03-22-2006, 02:21 PM
Senior Member
 
Join Date: Jan 2006
Location: Australia
Posts: 111
jorgka is on a distinguished road
Talking Need help Please Braintrader signals

Hi All,

Simple question for you programmers out there.

Currently writing an EA, one of the indicators i'm using is braintrend2sig.

However i'm having difficulty writing the correct Icustom function. Can someone please help me.
(my programing experience is mainly batch files from DOS days, yeah I know i'm still in the past but I do get by only just)

If you could place two line's of code to represent value 1 (Long)& value 2 (short)that would be great.

HERE is the indicator so you know what you working with.

Many Thanks

Jorgka
Attached Files
File Type: mq4 BrainTrend2Sig.mq4 (4.9 KB, 101 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
  #2 (permalink)  
Old 03-22-2006, 06:38 PM
lowphat's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 200
lowphat is on a distinguished road
double iCustom( string symbol, int timeframe, string name, ... , int mode, int shift)

Parameters:

symbol - Symbol the data of which should be used to calculate indicator. NULL means current symbol.
timeframe - Time frame. It can be any of Time frame enumeration values.
name - Custom indicator compiled program name.
... - Parameters set (if needed).
mode - Line index. Can be from 0 to 7.
shift - Shift relative to the current bar (number of periods back), where the data should be taken from.


im guessing something simular to

iCustom(NULL, 0, "BrainTrend2Sig",0,0); //up arrow
iCustom(NULL, 0, "BrainTrend2Sig",1,0); //down arrow

if ya make anything profitable send it my way *wink wink*
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
  #3 (permalink)  
Old 03-23-2006, 01:21 AM
Senior Member
 
Join Date: Jan 2006
Location: Australia
Posts: 111
jorgka is on a distinguished road
Braintrader

Lowphat

It works except is places the trade on every bar. How do you allow the EA to only place the trade when the signal is given. One would think that iCustom(NULL, 0, "BrainTrend2Sig",1,0); //down arrow, iCustom(NULL, 0, "BrainTrend2Sig",1,0); //up arrow would be fine except this does not seem to be the case.

Jorgka
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
  #4 (permalink)  
Old 03-23-2006, 01:41 AM
lowphat's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 200
lowphat is on a distinguished road
Quote:
Originally Posted by jorgka
Lowphat

It works except is places the trade on every bar. How do you allow the EA to only place the trade when the signal is given. One would think that iCustom(NULL, 0, "BrainTrend2Sig",1,0); //down arrow, iCustom(NULL, 0, "BrainTrend2Sig",1,0); //up arrow would be fine except this does not seem to be the case.

Jorgka
its not
iCustom(NULL, 0, "BrainTrend2Sig",1,0); //down arrow,
iCustom(NULL, 0, "BrainTrend2Sig",1,0); //up arrow
which you typed above
its
iCustom(NULL, 0, "BrainTrend2Sig",0,0); //up arrow
iCustom(NULL, 0, "BrainTrend2Sig",1,0); //down arrow

if you still have problems with it making to many entrys you may want to check out ***THIS*** thread
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
  #5 (permalink)  
Old 03-23-2006, 02:21 AM
Senior Member
 
Join Date: Jan 2006
Location: Australia
Posts: 111
jorgka is on a distinguished road
Here's a copy of the brainsig2test EA, I'v taken out all other config's only to concentrate on these signals.

Now open up 1min chart (just for testing) & run the EA. You'l see what I mean.

All I need it to do is open orders when the signals are given. Buy for blue signal & sell for red signal. If you can help me that would be great. once this is done I can add all other parameters & send you the entire EA which has plenty of potential. This is my only outstanding issue & out of bounds of my programing knowledge.

Cheers

Jorgka
Attached Files
File Type: mq4 Brainsig2test.mq4 (6.5 KB, 51 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
  #6 (permalink)  
Old 03-23-2006, 07:20 AM
lowphat's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 200
lowphat is on a distinguished road
looks fine to me i did change time frame to 0 for current chart before i checked it and removed the 500 reference which i believe just tells the indicator how many bars back to draw. tested on 30 min. the backtester will enter a crapload of times on one bar here and there so sometimes u have to add some kinda code that will limit when it enters.
Attached Images
File Type: gif brain.gif (12.3 KB, 313 views)
Attached Files
File Type: mq4 Brainsig2test01.mq4 (7.6 KB, 83 views)

Last edited by lowphat; 03-23-2006 at 07:24 AM.
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
  #7 (permalink)  
Old 03-23-2006, 12:25 PM
Senior Member
 
Join Date: Jan 2006
Location: Australia
Posts: 111
jorgka is on a distinguished road
The Matrix Ea Beta 2

Cheers Lowphat. here's the ea. I'm currently testing the EA now please let me know on your thoughts please, cause I am only a newbie in trading & programming so your ideas will be welcomed.

The Idea is.

Trading only on 15 min's

Buy

Juice > 0
Nina Yellow > Blue
KI > 0
BBands = Green
Braintrendsig has given Blue arrow

Exit when Brainstop is red.

Sell

Juice > 0
Nina Yellow < Blue
KI < 0
BBands = orange
Braintrendsig has given red arrow

Exit when brainstop is Blue.

May the pip shower on us all

Jorgka
Attached Files
File Type: zip The Matrix.zip (13.7 KB, 127 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
  #8 (permalink)  
Old 03-23-2006, 06:12 PM
Member
 
Join Date: Mar 2006
Posts: 28
fix_man is on a distinguished road
Wink

Hi there,

Does anyone have the the complete BrainTrend1Sig files, mine became corrupted after I altered them, and I dont have a backup for it anymore. Hard drive crashed!

Guess back to square one, if someone can upload the files, that will be appreciated!
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
  #9 (permalink)  
Old 03-23-2006, 10:57 PM
Senior Member
 
Join Date: Jan 2006
Location: Australia
Posts: 111
jorgka is on a distinguished road
Sure, Here you go. All Eight indicators.
Attached Files
File Type: zip braintrend.zip (9.8 KB, 118 views)
File Type: pdf braintrading manual.pdf (492.9 KB, 136 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
  #10 (permalink)  
Old 03-24-2006, 07:50 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,016
Blog Entries: 235
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 fix_man
Hi there,

Does anyone have the the complete BrainTrend1Sig files, mine became corrupted after I altered them, and I dont have a backup for it anymore. Hard drive crashed!

Guess back to square one, if someone can upload the files, that will be appreciated!
Everything is here.
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
braintrend2sig, braintrend2sig.mq4, Braintrader

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
Live Signals messenger News/Signal Trading 657 Today 04:08 AM


All times are GMT. The time now is 05:18 AM.



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