Forex



Go Back   Forex Trading > Discussion Areas > Suggestions for 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
  #1 (permalink)  
Old 10-22-2006, 03:54 PM
Junior Member
 
Join Date: Dec 2005
Posts: 6
mikkelguld is on a distinguished road
My simple system

You probably heard this one before, but I hope someone would be kind to help me develop my simple trading system.

I need a script (not an EA) that will place x buy and sell orders (buy above current quote and vice versa).
The amount of pips between each order should also be editable.
The script has to be able to handle micro lots.

The other script should be a close all open and pending orders.

I'm not sure this system will work, but I think it's worth a try.
TIA
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 10-22-2006, 09:42 PM
Junior Member
 
Join Date: Dec 2005
Posts: 6
mikkelguld is on a distinguished road
Update

I found the "close all open and pending orders" script somewhere else on this site, which means I'm only looking for the first one.
I may have a few talents, but programming isn't one of them - please HELP
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 10-23-2006, 03:07 PM
Junior Member
 
Join Date: Dec 2005
Posts: 6
mikkelguld is on a distinguished road
Looking for a programmer

According to some people on this board, asking for help isn't welcome.
Therefor I'm trying a different approach.
I will pay $25 to the person who can help me program the two scripts.
The close all open and pending orders script had an error, so I will need both of them.
You will have to be able to accept Paypal.
I know the $25 won't get you a Lamborghini but that's all I have to offer.
Please let me 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
  #4 (permalink)  
Old 10-23-2006, 03:12 PM
elihayun's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 396
elihayun is on a distinguished road
i will do it for u for free. just give me some time.
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 10-23-2006, 03:22 PM
Junior Member
 
Join Date: Dec 2005
Posts: 6
mikkelguld is on a distinguished road
Thank you

Thanks.
Your help is much appreciated.
I don't know if my system is worth anything, but once I get started I'll let you know.
Once again - thank you
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 10-23-2006, 07:21 PM
elihayun's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 396
elihayun is on a distinguished road
here u go. Hope this is what u want
Attached Files
File Type: mq4 Close All.mq4 (1.8 KB, 79 views)
File Type: mq4 Set Buy Sell Orders.mq4 (2.1 KB, 77 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
  #7 (permalink)  
Old 10-23-2006, 08:23 PM
Junior Member
 
Join Date: Dec 2005
Posts: 6
mikkelguld is on a distinguished road
Just a few changes and it should be fine.

That's pretty fast. Thanks.
The close all works just fine, but the script that places the pending orders may need to be changed a bit.
I'm sorry if you misunderstood the way it's supposed to work. English isn't my native language but I will try to explain more detailed.

Let's say the current quote is 1.2500. I would like a variable (is that what you call it??) where I can specify the number of orders. If I say it should be 50, the script should place 50 buy orders above current quote and 50 sell orders below current quote. Please note - no sell orders above and vice versa.
The next thing is the number of pips between each order. For instance, if that number is two, the buy orders should be something like:
buy 1.2507, 1.2509, 1.2511 and so on. The same goes for the sell orders.
There should not be any stop loss or limit orders.

Just one more tiny thing.
I wasn't able to change the lot size to mini/micro lots.

I think that's about it.
Thank you for all your hard work and help.
Hopefully one day I will be able contribute with something to this forum.
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 10-23-2006, 08:54 PM
elihayun's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 396
elihayun is on a distinguished road
here is the updated version

change the parameters to suit your needs before compile.

PHP Code:
extern string s1 "Lot size";
extern   double Lots 0.1;
extern string s2 "Pips above/below current price";
extern   int Trap 15;
extern string s3 "Pips between every panding order";
extern   int pipsApart 2;
extern string s4 "How many trade to open";
extern int  NumTrades    50
Attached Files
File Type: mq4 Set Buy Sell Orders.mq4 (2.6 KB, 144 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
  #9 (permalink)  
Old 10-23-2006, 09:23 PM
Junior Member
 
Join Date: Dec 2005
Posts: 6
mikkelguld is on a distinguished road
It's alive!!!

Looks like it's working.
You're da man. Thank you.
I'll update this thread with trading results. Perhaps not on a daily basis but hopefully twice per week. I have a full time job which prevents me from taking all the entries I would like, but at least I'm not trading blindfolded.
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 10-26-2006, 02:38 PM
Member
 
Join Date: Dec 2005
Location: Shanghai
Posts: 41
doragio is on a distinguished road
Quick Question

Thanks for sharing the useful scripts with everyone. I have a question though and would appreciate if someone knew what this is

When I execute the scripts, they have this message that says Alert: Order failed to close, error 0, sometimes error 138

Anyone know what causes this and how to resolve it? 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
Reply

Bookmarks


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
Simple 15 min system image3022 Suggestions for Trading Systems 14 03-14-2008 06:11 PM
Wanted: EA for very simple system WNW Expert Advisors - Metatrader 4 7 02-13-2007 03:48 AM
simple system iliaazshareef Suggestions for Trading Systems 2 06-06-2006 06:17 PM


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



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