Forex



Go Back   Forex Trading > Downloads > Expert Advisors - Metatrader 4
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
  #201 (permalink)  
Old 03-29-2006, 03:20 PM
delsule's Avatar
Member
 
Join Date: Nov 2005
Posts: 97
delsule is on a distinguished road
Quote:
Originally Posted by maniek
Thanks for your statement, but I have question, why you have only one loss trade, not three?
Yes, I also wonder. With three yesterday's profit would be gone.
It happens more that it only opens one trade.
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
  #202 (permalink)  
Old 03-29-2006, 06:13 PM
holyguy7's Avatar
Senior Member
 
Join Date: Feb 2006
Posts: 504
holyguy7 is on a distinguished road
One more feature

Nich,

Any chance you can add to Profit Generator the ability to reverse the trade? Meaning that the buys would be the sells and the sells would be the buys.

See my post HERE for an explaination.

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
  #203 (permalink)  
Old 03-29-2006, 06:35 PM
delsule's Avatar
Member
 
Join Date: Nov 2005
Posts: 97
delsule is on a distinguished road
Updated statement for today. Settings: 30 min, tp 6, sl 20, 3 trades.
Attached Files
File Type: htm Profit generator.htm (22.2 KB, 193 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
  #204 (permalink)  
Old 03-29-2006, 11:41 PM
cockeyedcowboy's Avatar
Senior Member
 
Join Date: Nov 2005
Posts: 480
cockeyedcowboy is on a distinguished road
Nicholishen

This method is intended for a finished fully functional system. What I mean is one that is turned on and let run. If your testing a system and changing TF and turning it off in the middle of its run then its not set up for that. I have another way to change settings on an EA while its running that doesnot intail turning it off and on again. The line of code that is hi-lighted turns this function on or off. It grants the user the ability to intravine in the operation of the EA while it is running without having to stop and restart it. On evey tick at the start of the code the program looks to see if the user has over ride the process. Liken to a back door.

I have also done some work on a means of createing a registry process for all EAs that are running. Based on the reason for deinit the EA can look for any existing orders on restart. This is intended again for a fully functional system and the main purpose is for the ablility to recover form outages. This is not completed at this time.




Code:
                    extern bool
                                    SetSystemInAuto        =  False;
 
    // ««« SYSTEM DEFAULT PARAMETER SECTION: »»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»
        bool
            HoldDirection      =  False, // Holds last win direction to start new campaign.
            UseMarketBias      =  False, // Market direction determines first level deployment.
            UserIntervention   =  False, // Ability to manually over ride system during its run.
            UseStopLoss        =  False, // Switch on and off the use of stoploss orders.
            UseTakeProfits     =  False, // Switch to apply Take Profit exits.
            UseEmergencyExits  =  False, // Switch for the the use of emergency sever base exits.
            AutoProfitSizing   =  False, // ProfitTarget will be derived from market conditions.
            AutoTunnelSizing   =  False, // Tunnel size will be derived from market conditions.
            AutoLotSizing      =  False, // Bases base lot size to current account size.
            PlaySoundAlerts    =  False, // Enables sound wave to be played on triggered alerts.
            DeBugMessages      =   True; // Turns on and off code functions for code debuging.
 
        int
            DefaultDirection   =   Long, // Default setting initial system start up.
            ScreenInformation  =    All, // Switches system information screens.
            AvailableScreens   =      7, // Maximum information screen available for viewing.
            ScreenViewingTime  =     15, // Length of time screen is visiable (in Ticks).
            PauseInterval      =  10000, // Pause interval between order placements (10sec).
            MaximumAttempts    =      2, // Repeated order execution on failed attempt.
            OrderPortion       =    100, // Internal portion of Tag number for position tracking.
            Slippage           =      0, // Sets price slippage for order entry.
            MaximumLots        =     50, // Maximum net lots permitted by your broker.
            RiskLevel          =      1, // Varible, 1 to 5: One being the lowest risk level.
            EmergencyExitLevel =     30, // The emergency exit level to mantain on open orders.
            MaximumLevels      =     10, // Maximum trade levels that will be mantained.
            MarketStudyPeriod  =     13; // Data length to determine Market conditional Bias.
 
    // ««« GLOBAL SCOPE VARIABLES SECTION: »»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»
        int
            PositionLevel           =  Empty,         OrderDirection        =  Empty,
            LastDirection           =  Empty,         LastOrderPlaced       =  Empty,
Quote:
Originally Posted by Nicholishen
I used that in another system, but too many people had problems from denit the EA and then it would init with a new id. They were getting confused and having the ea keep onopen order because it would not recognize the existing orders. I love this system and want to use it, but do you know of a way to keep the EA from init and deinit when you change settings or power down?
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
  #205 (permalink)  
Old 03-29-2006, 11:42 PM
holyguy7's Avatar
Senior Member
 
Join Date: Feb 2006
Posts: 504
holyguy7 is on a distinguished road
Updated statement

Still profitable as you can see. At first, I thought the higher timeframes worked better with this EA, I was mistaken. Lower timeframes seem to work very well.

Here is my latest statement.

M15
Stoploss 30
Longbar 20
Take Profit 40-60
Attached Images
File Type: gif PG M15.gif (4.9 KB, 103 views)
Attached Files
File Type: htm PG M15.htm (13.8 KB, 147 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
  #206 (permalink)  
Old 03-29-2006, 11:44 PM
holyguy7's Avatar
Senior Member
 
Join Date: Feb 2006
Posts: 504
holyguy7 is on a distinguished road
Only one more thing we need on this EA. Reverse trades as the higher timeframes would benefit greatly from that feature. Help anyone. Add that feature in.
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
  #207 (permalink)  
Old 03-30-2006, 12:07 AM
Member
 
Join Date: Dec 2005
Posts: 32
zuhainis is on a distinguished road
Quote:
Originally Posted by holyguy7
Only one more thing we need on this EA. Reverse trades as the higher timeframes would benefit greatly from that feature. Help anyone. Add that feature in.
It's possible to reverse the trades, but you have to adjust the TP and SL coz of bid and ask different.
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
  #208 (permalink)  
Old 03-30-2006, 12:16 AM
Member
 
Join Date: Dec 2005
Posts: 32
zuhainis is on a distinguished road
Quote:
Originally Posted by delsule
Yes, I also wonder. With three yesterday's profit would be gone.
It happens more that it only opens one trade.
Try

extern double lots=3.0;
extern int MaxTrades=1;

The EA will open 1 trade with 3 lot instead of 3 trade 1 lot.
The later one will only open 3 trade if the condition is still true at that 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
  #209 (permalink)  
Old 03-30-2006, 02:02 AM
holyguy7's Avatar
Senior Member
 
Join Date: Feb 2006
Posts: 504
holyguy7 is on a distinguished road
Quote:
Originally Posted by zuhainis
It's possible to reverse the trades, but you have to adjust the TP and SL coz of bid and ask different.
I understand the changes but I believe that certain timeframes and settings would make this VERY profitable. If someone could code this one feature into it, that would be great.
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
  #210 (permalink)  
Old 03-30-2006, 02:30 AM
Senior Member
 
Join Date: Mar 2006
Posts: 793
Maji is on a distinguished road
Quote:
Originally Posted by holyguy7
Only one more thing we need on this EA. Reverse trades as the higher timeframes would benefit greatly from that feature. Help anyone. Add that feature in.
Holyguy,

I tried to reverse the signals in the attached EA. Is that what you are looking for?

Maji
Attached Files
File Type: mq4 Profit Generator - OptionsSet2-Reversed.mq4 (7.9 KB, 192 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
Reply

Bookmarks

Tags
profit generator 333, profit generator EA, forex, profit generator, profit one ea, ea profit, scalp ea, tdion, MTReport4, bagovino


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
forex signal generator paijolopez Analytics 1163 Yesterday 04:11 PM
Generator of filter's indicator for MT4 newdigital Digital Filters 27 10-23-2008 12:41 PM
News Generator mqldev News/Signal Trading 21 03-23-2007 02:52 AM
Profit Generator EA results sadaloma Post and compare Trades 216 05-27-2006 07:24 PM


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



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