Forex



Go Back   Forex Trading > Downloads > Expert Advisors - Metatrader 4 > TSD Expert Advisors
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
  #21 (permalink)  
Old 05-07-2006, 10:11 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,070
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 yass
Hi newdigital
I cant compile the TSD-MTR4-MR-34 or 36 to the chart only TSD-v11-jy could be compiled can u advice ? and in the ASCT EA excute 0.1 lot even its written 1.0 lot how can i do to make the EA excute 1.0 lot ? many thanks
I can compile any TSD with no problem but I am not using IBFX.
IBFX broker mini lot?
If so change AUDUSD to AUDUSDm, EURUSD to EURUSDm and so on inside the code of TSD EA.

As to ASCT EA so I don't remember this EA but try to change in the beginning to the code to the following:

Code:
extern double Lots = 0.1;
instead of something written there like this: extern int ...

I do not have ths EA now so try.
I don't know.
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
  #22 (permalink)  
Old 05-07-2006, 12:30 PM
coyan's Avatar
Member
 
Join Date: Jan 2006
Posts: 94
coyan is on a distinguished road
Quote:
Originally Posted by yass
Hi newdigital
I cant compile the TSD-MTR4-MR-34 or 36 to the chart only TSD-v11-jy could be compiled can u advice ? and in the ASCT EA excute 0.1 lot even its written 1.0 lot how can i do to make the EA excute 1.0 lot ? many thanks
With SBFX I did this:

1. Use only the file below.
2. Copy to the folder.
3. Modify.
4. This without space:

#include <stdlib.mqh>
#define DIRECTION_MACD 1
#define DIRECTION_OSMA 2
#define FILTER_WPR 1
#define FILTER_FORCE 2

5. Compile.

6. Save

7 And then add to the chart.

Coyan
Attached Files
File Type: mq4 TSD_MT4_MR_Trade_0_36.mq4 (16.9 KB, 409 views)

Last edited by coyan; 05-07-2006 at 12:35 PM.
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
  #23 (permalink)  
Old 05-07-2006, 03:02 PM
Member
 
Join Date: Mar 2006
Posts: 85
yass is on a distinguished road
Tsd-mtr-36

Hi Coyan
I have this in the code
Quote:
#include <stdlib.mqh>

#define DIRECTION_MACD 1
#define DIRECTION_OSMA 2

#define FILTER_WPR 1
#define FILTER_FORCE 2
but its useless i cant compile i tried neuimex terminal and alpari noway i dont now why?
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
  #24 (permalink)  
Old 05-07-2006, 03:50 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,070
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 yass
Hi Coyan
I have this in the code

but its useless i cant compile i tried neuimex terminal and alpari noway i dont now why?
I am not Coyan but i can compile with no problem with aplari, north finance, fibo group ... I don't know why.
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
  #25 (permalink)  
Old 05-07-2006, 07:31 PM
coyan's Avatar
Member
 
Join Date: Jan 2006
Posts: 94
coyan is on a distinguished road
Quote:
Originally Posted by yass
Hi Coyan
I have this in the code

but its useless i cant compile i tried neuimex terminal and alpari noway i dont now why?
NO:

#define DIRECTION_MACD 1
#define DIRECTION_OSMA 2

#define FILTER_WPR 1
#define FILTER_FORCE 2


YES:

#define DIRECTION_MACD 1
#define DIRECTION_OSMA 2
#define FILTER_WPR 1 (WITHOUT SPACE)
#defineFILTER_FORCE 2

(NO SPACE IN THE LINES)

compile and save.
I dont'n know why, but run ok

Coyan

Last edited by coyan; 05-07-2006 at 07:40 PM.
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
  #26 (permalink)  
Old 05-07-2006, 10:30 PM
Member
 
Join Date: Mar 2006
Posts: 85
yass is on a distinguished road
Tsd-mtr4

Quote:
#define DIRECTION_MACD 1
#define DIRECTION_OSMA 2
#define FILTER_WPR 1 (WITHOUT SPACE)
#defineFILTER_FORCE 2
Hi Cayon
Yes its ok many thanks indeed , did u test this EA ? if yes what currencies and which TE'S?
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
  #27 (permalink)  
Old 05-07-2006, 11:22 PM
coyan's Avatar
Member
 
Join Date: Jan 2006
Posts: 94
coyan is on a distinguished road
Quote:
Originally Posted by yass
Hi Cayon
Yes its ok many thanks indeed , did u test this EA ? if yes what currencies and which TE'S?
No yet.

Newdigital wrote this:
Version 36:
"The trading is simple: just attach EA to the any D1 chart (GBPJPY or GBPCHF is preferable). And EA will trade all the pairs simultaniously. If we do not want for some pair to be traded we may simple delete this pair from the code. Remember: attach EA to one D1 chart only and this EA will trade all the pair mentioned in the code".


Coyan

Last edited by coyan; 05-08-2006 at 04:37 PM.
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
  #28 (permalink)  
Old 05-08-2006, 08:27 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,070
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 coyan
No yet.

Newdigital wrote this:

"The trading is simple: just attach EA to the any D1 chart (GBPJPY or GBPCHF is preferable). And EA will trade all the pairs simultaniously. If we do not want for some pair to be traded we may simple delete this pair from the code. Remember: attach EA to one D1 chart only and this EA will trade all the pair mentioned in the code".


Coyan
I corrected it later.
Usually all the TSD EAs are working like this (attach to one chart only).
But seems this Osma TSD is different.
Read this post.
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
  #29 (permalink)  
Old 05-08-2006, 04:36 PM
coyan's Avatar
Member
 
Join Date: Jan 2006
Posts: 94
coyan is on a distinguished road
Quote:
Originally Posted by newdigital
I corrected it later.
Usually all the TSD EAs are working like this (attach to one chart only).
But seems this Osma TSD is different.
Read this post.

Versio 36 need attach only in one chart.

version 11; no.

Coyan
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
  #30 (permalink)  
Old 05-09-2006, 12:35 AM
coyan's Avatar
Member
 
Join Date: Jan 2006
Posts: 94
coyan is on a distinguished road
Quote:
Originally Posted by iscuba11
I found this EA somewhere on a forum. On the USDJPY (1 Hour) it has produced about 300 pips in 4 trades so far (forward demo testing). The problem is it does not trade on the other 3 major currencies for some internal programming reason. Since this is a forum to help each other out, I was wondering if somebody would disect this EA and find out why it will not trade on the other 3 major currencies. Your help would be most appreciated. Please if you would, fix it and post it back to this forum or send it to me: ddiebold@sbcglobal.net as an attachment

Dave
<><

Houston, Texas
Iscuba:
In version 11 modify the year to 2006 in the EA
modify - change year - compile - save
and add in the charts you want.
I test it and at the moment make signals in usd/chf.

Coyan
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
osma ea, OsMA forex, osma mt4, tsd ea, osma forex, TSD-v11-MT4-JB-OsMA, forex osma


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
Need OSMA customized hidethereal Indicators - Metatrader 4 3 08-07-2006 03:34 AM
TSD-v11 MT4-JB-OsMA setup sadaloma TSD Expert Advisors 2 06-15-2006 11:23 PM
OsMA II SpecII Suggestions for Trading Systems 3 03-08-2006 02:56 PM


All times are GMT. The time now is 04:11 AM.



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