Forex



Go Back   Forex Trading > Programming > MetaTrader
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
  #81 (permalink)  
Old 05-03-2006, 04:33 PM
Junior Member
 
Join Date: May 2006
Posts: 3
t0shiba is on a distinguished road
Thumbs up Searching for someone to code a part in an indicator

hi there,

actually i have the MA crossover with wav indicator, it actually shows arrows for buy/sell decisions, i would like to let it work with me instead of just showing these arrows however it can buy/sell automatically ...

anyone who could do this for me, message me back, and i'll send him the indicator to do it for me.

Best Regards,

t0shiba
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
  #82 (permalink)  
Old 05-03-2006, 06:08 PM
Junior Member
 
Join Date: Mar 2006
Posts: 17
winnysunny is on a distinguished road
่ีjust write an EA of those indicators

then it will automatically open an order
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
  #83 (permalink)  
Old 05-03-2006, 06:13 PM
Junior Member
 
Join Date: May 2006
Posts: 3
t0shiba is on a distinguished road
Quote:
Originally Posted by winnysunny
่ีjust write an EA of those indicators

then it will automatically open an order
Well, how to write an EA? and i need it also to close automatically the buy order, when its time to sell and vice versa.
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
  #84 (permalink)  
Old 05-03-2006, 06:22 PM
Junior Member
 
Join Date: Apr 2006
Location: Austria
Posts: 21
Marphe is on a distinguished road
the asctrend expert works a similar way.. but with asctrend as indicator.. ASCTrend system

post your indicator, let us look
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
  #85 (permalink)  
Old 05-03-2006, 07:11 PM
Junior Member
 
Join Date: May 2006
Posts: 3
t0shiba is on a distinguished road
here it is.
Attached Files
File Type: mq4 MA_Crossover_Signal_With_wav.mq4 (4.2 KB, 99 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
  #86 (permalink)  
Old 05-03-2006, 10:15 PM
firedave's Avatar
Senior Member
 
Join Date: Nov 2005
Location: Jakarta, Indonesia
Posts: 414
firedave is on a distinguished road
Hi t0shiba, could you check this Universal MA Cross EA ? Maybe the EA could help you a bit. Thank you
__________________
David Michael H
"Trader helps traders with sincerity, honesty and integrity"
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
  #87 (permalink)  
Old 05-04-2006, 01:57 AM
cockeyedcowboy's Avatar
Senior Member
 
Join Date: Nov 2005
Posts: 480
cockeyedcowboy is on a distinguished road
firedave

Today I have looked at an EA you have writen and was inpressed with your coding style. Clean and readable, refreshing. The code was named universal moving cross.


The CockeyedCowboy
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
  #88 (permalink)  
Old 05-04-2006, 03:09 AM
firedave's Avatar
Senior Member
 
Join Date: Nov 2005
Location: Jakarta, Indonesia
Posts: 414
firedave is on a distinguished road
Quote:
Originally Posted by cockeyedcowboy
firedave

Today I have looked at an EA you have writen and was inpressed with your coding style. Clean and readable, refreshing. The code was named universal moving cross.


The CockeyedCowboy
Hi Cowboy, thank you for the compliment. I'm learning a lot from this forum. Well, hopefully the EA could at least make some real money for someone
__________________
David Michael H
"Trader helps traders with sincerity, honesty and integrity"
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
  #89 (permalink)  
Old 05-06-2006, 04:39 AM
Senior Member
 
Join Date: Sep 2005
Location: St Louis, MO, USA
Posts: 176
cardio is an unknown quantity at this point
Check symbol and EA magicnumber

Hi

Thanks codersguru

The following also checks the symbol and magicnumber (I hope)- so one doesn't get one's ea messing with each other

Code:
double GetLastProfit(string symbol1,int magicEA )
{
   int total = HistoryTotal();
   
   datetime cur_order = 0;
   datetime last_order=0;
   double profit=0;
      
   for(int cnt = 0 ; cnt < total ; cnt++)
   {
      OrderSelect(cnt,SELECT_BY_POS,MODE_HISTORY);
      if(OrderSymbol()!= symbol1 || OrderMagicNumber() != magicEA) continue;
      cur_order = OrderCloseTime();
      if(cur_order>last_order)
      {
         last_order = cur_order;
         profit = OrderProfit();
      }
   }
   return (profit);
}

Last edited by cardio; 05-06-2006 at 05:05 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
  #90 (permalink)  
Old 05-10-2006, 03:19 AM
Senior Member
 
Join Date: Sep 2005
Location: St Louis, MO, USA
Posts: 176
cardio is an unknown quantity at this point
how long does history last

Hi
If my machine shuts down and I have to restart my ea - will functions like OrderSelect(cnt,SELECT_BY_POS,MODE_HISTORY); - still bring back valid orders - or are these orders only valid for a session of metaquotes?

Any ideas?

I now realize I will have to modify my ea's so that my public variables get persisted to file - and give the user an option to read them back if the user has to restart his machine.
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
#include, candle time, CHinGsMAroonCLK, code, coders guru, conditionally, dll, eli hayun, Eur_harvester.ex4, expert adviser, expert advisor, forex, higher high, how to code, indicator, I_XO_A_H, kehedge, mechanical trading, metatrader command line, mt4, MT4-LevelStop-Reverse, OrderReliable.mqh, programming, rectangle tool, trading, volty channel stop


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
How to code this? iscuba11 Metatrader 4 mql 4 - Development course 1 08-03-2007 05:22 PM


All times are GMT. The time now is 03:45 AM.



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