• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 1:57am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 1:57am
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Making money on GPB/JPY only 35 replies

Haikanoz Trading Journal/Journey (Privately for Myself Only) 12 replies

Converting our BAD EAs to stable profit making systems 1 reply

Making Too Much Money with a Broker? 14 replies

Journal Factory posters - how much money are you making? 17 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 192
Attachments: Only about making much money, requesting EAs and myself
Exit Attachments

Only about making much money, requesting EAs and myself

  • Last Post
  •  
  • Page 1 23456 14
  • Page 1 234 14
  •  
  • Post #1
  • Quote
  • First Post: Edited Aug 25, 2018 5:05am Aug 2, 2018 10:32am | Edited Aug 25, 2018 5:05am
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,507 Posts
Ok.....I m a german hardcore coder....studying IT and having much wonderfull life beneath coding...so i have not much time to code in freetime!
Rules for Request:
- NO Grid
- NO 1 pip strategies
- NO martingale
- Minimum H1 TF
- must be 100% automatically to be traded
- A full strategy: NOT: open trades on X pairs and close if in profit....

Recommended:
- Tested strategy with results
- Sample of trades in screenshots
- Clear rules
- send me everything packed on openload.co


My style:
- 1-2-3(ZZ in several variations)
- Strength
- filter with indicators
- SL, TP fixed and with indicator trailings

My rulez:
- I never take money
- If i m interested I ll code...if not nothing else can convince me
- I never give your ideas a third person(Exception: Public requests)
- I never give my source code or part of my libray outside
- I ll put a time stop in my EAs so nobody can sell or scam like on youtube
(But after this you can get version with a year longer)
- Mostly ideas I can t code cause I havent the time which I spent in real life
- Doing a private project here is a pain...send me your email and I ll give you a code for an
opodio project group

Communication:
- Here for simple changing ideas
- opodio for everything else: creating and testing the EA
- no telegram or whatsapp(It breaks my university lessons)
- no email...to unstructured
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot1.png
Size: 340 KB
Vucking good EA coder...
  • Post #2
  • Quote
  • Aug 2, 2018 10:40am Aug 2, 2018 10:40am
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,507 Posts
And yes....i want high quality for the strategies cause I m doing high quality coding....
Attached Image
Vucking good EA coder...
 
1
  • Post #3
  • Quote
  • Aug 2, 2018 12:10pm Aug 2, 2018 12:10pm
  •  michisuperfr
  • Joined Mar 2016 | Status: Peace_To_The_World | 679 Posts
only MQL?
"Men Who Can Both Be Right & Sit Tight Are Uncommon" ~ Jesse Livermore
 
 
  • Post #4
  • Quote
  • Aug 2, 2018 1:47pm Aug 2, 2018 1:47pm
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,507 Posts
Quoting michisuperfr
Disliked
only MQL?
Ignored
YES...cause I have a class library where I put the EA 2gether like kids the lego bricks..

THIS is my lastest EA...main file:

Inserted Code
   
   #property strict
   #property icon "\\files\\miley.ico"
   //  ***************************************************************************************************************************************
   // Include files+settings: Testing
   //  ***************************************************************************************************************************************
  // Enables the testing framework
   //#define verExtTestAndStop     
   //#define verExtDebugMessage
   // *********************************** Flags for filters *******************************************
   //#define verFltLastCandleDirection
   //#define verFltMovingAverage
   //#define verFltMovingAverage2
   //#define verFltRsiTrend
   //#define verFltpSar
   //#define verFltCciTrend
   //#define verFltpSar2
   // *********************************** Flags for HTF filters *******************************************
   //#define verFltHTFLastCandleDirection
   #define verFltHTFMovingAverage
   //#define verFltHTFMovingAverage2
   //#define verFltHTFRsi
   //#define verFltHTFpSar
   //#define verFltHTFCci
   //#define verFltHTFpSar2
   // *********************************** Flags for special filters *******************************************
   //#define verFltSpecialCyboWeekly
   //#define verFltSpecialWYFXNitro
   #define verFltSpecialMultitrendSignal

   //  *************************************************************************** Include files+settings: Break-Even && Stop Loss      
   #define verExtSLFixed                   // Explicit fixed SL
   #define verExtTPFixed                   // Explicit fixed TP
   //#define verExtTrailingSLCodeDefined     // Trailing: Defined by coder
   #define verExtBreakEven                       // Break Even: Enable
   #define verExtTrailingSLDistinctValues        // Trailing: Distinct values
   #define verExtTrailingSLpSAR                  // Trailing: pSar
   //#define verExtTrailingSLFractals              // Trailing: Fractals
   //#define verExtTrailingSLmovAvg                // Trailing: Moving Average
   //#define verExtTrailingSLAtr                   // Trailing: ATR
   //#define verExtTrailingSLZigZag                // Trailing: ZigZag
   //#define verExtTrailingSLMinMaxLastX           // Trailing: Max Min last X Candles
   #define verExtTrailingShadows                 // Trailing: Shadows(by Mec the Master of 99%)
   //  *************************************************************************** Time & pairs
   //#define verExtTimeRestrictions
   //#define verExtMultiplePairs
   
   // Main part
   #include <Retina - EA Framework V5.00\Retina_Framework_EA_CDF_MasterV5.00.mqh>   
   // Sets the cutting off date of the EA
   CSecurityV2 security(D'2018.12.31 00:00');   
  
        
   //  ***************************************************************************************************************************************
   // Coding Strategy: Settings and Include Files
   //  ***************************************************************************************************************************************
   input string strStrategySettings = "////////////////// Strategy settings ///////////////////";//_
   #include <..\indicators\++Shimmering - Outstanding Breakout\Retina_Class_BreakOut_byShim_V2.00.mqh>             
   
   //  ***************************************************************************************************************************************
   //  Class CTrade
   //  *************************************************************************************************************************************** 
   class CTrade: public CTradeBasic{
      public:
         //  ***************************************************************************************************************************************
         //  buy sell functions
         //  *************************************************************************************************************************************** 
         bool buyMultiple(int i, TTradeData &tradeData[]){ 
            return 
               breakout.buyMultiple(i,tradeData);
         } 
      
         bool sellMultiple(int i, TTradeData &tradeData[]){ 
            return 
               breakout.sellMultiple(i,tradeData);
         } 
      
         //  ***************************************************************************************************************************************
         //  buyTrailing function
         //  *************************************************************************************************************************************** 
         double buyTrailing(string orderComment){ 
            return
               breakout.buyTrailing(orderComment);
         } 
      
         //  ***************************************************************************************************************************************
         //  sellTrailing function
         //  *************************************************************************************************************************************** 
         double sellTrailing(string orderComment){ 
            return
               breakout.sellTrailing(orderComment);
         }    
   };
   CTrade trade();
Vucking good EA coder...
 
 
  • Post #5
  • Quote
  • Aug 2, 2018 1:51pm Aug 2, 2018 1:51pm
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,507 Posts
ONLY mq4....vettel is so excellent cause he is only doing high level F1 not F2 , F3, diving, running and so on...superwomen is good cause she does only save the world in her maintime
Attached Image
Vucking good EA coder...
 
 
  • Post #6
  • Quote
  • Aug 2, 2018 1:52pm Aug 2, 2018 1:52pm
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,507 Posts
But U r free to tell me ur strat without mq4...
Attached Image
Vucking good EA coder...
 
 
  • Post #7
  • Quote
  • Aug 2, 2018 1:54pm Aug 2, 2018 1:54pm
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,507 Posts
And when my EAs r ready...that s the reaction of the traders:
Attached Image
Vucking good EA coder...
 
 
  • Post #8
  • Quote
  • Aug 2, 2018 1:55pm Aug 2, 2018 1:55pm
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,507 Posts
I ll code nearly everything...like for my other students the solutions of the excercises....hahaha
Attached Image
Vucking good EA coder...
 
 
  • Post #9
  • Quote
  • Aug 2, 2018 3:08pm Aug 2, 2018 3:08pm
  •  skpia11
  • | Joined Jul 2018 | Status: Junior Member | 2 Posts
i want to learl mql4 coding, can you tell me good source for that?
 
 
  • Post #10
  • Quote
  • Aug 2, 2018 3:31pm Aug 2, 2018 3:31pm
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,507 Posts
Quoting skpia11
Disliked
i want to learl mql4 coding, can you tell me good source for that?
Ignored
Sorry I started learning with 12...mq4 is like c# with little mods....
Vucking good EA coder...
 
 
  • Post #11
  • Quote
  • Aug 2, 2018 5:40pm Aug 2, 2018 5:40pm
  •  RondaRousey
  • Joined Jan 2017 | Status: Member | 695 Posts
Coding for a profitable strategy. No deal

A profitable strategy for a profitable strategy. Deal


There are so many starving coders out there

There are no starving traders with profitable strategies

You came here for the truth and let me unveil it for you
 
5
  • Post #12
  • Quote
  • Aug 2, 2018 11:47pm Aug 2, 2018 11:47pm
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,507 Posts
Quoting RondaRousey
Disliked
Coding for a profitable strategy. No deal A profitable strategy for a profitable strategy. Deal There are so many starving coders out there There are no starving traders with profitable strategies
Ignored
I dont discuss weather who is starving....yesterdays last EA....
Attached Image (click to enlarge)
Click to Enlarge

Name: Untitled.png
Size: 81 KB
Vucking good EA coder...
 
1
  • Post #13
  • Quote
  • Aug 2, 2018 11:51pm Aug 2, 2018 11:51pm
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,507 Posts
Quoting RondaRousey
Disliked
Coding for a profitable strategy. No deal A profitable strategy for a profitable strategy. Deal There are so many starving coders out there There are no starving traders with profitable strategies
Ignored
My intention is not to get MORE requests...my intentions is to get less....not these strategies...."I have a idea...":
Attached Image
Vucking good EA coder...
 
 
  • Post #14
  • Quote
  • Aug 2, 2018 11:52pm Aug 2, 2018 11:52pm
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,507 Posts
Quoting RondaRousey
Disliked
Coding for a profitable strategy. No deal A profitable strategy for a profitable strategy. Deal There are so many starving coders out there There are no starving traders with profitable strategies
Ignored
Not the strategies which are bad described....
Attached Image
Vucking good EA coder...
 
 
  • Post #15
  • Quote
  • Aug 2, 2018 11:55pm Aug 2, 2018 11:55pm
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,507 Posts
Quoting RondaRousey
Disliked
Coding for a profitable strategy. No deal A profitable strategy for a profitable strategy. Deal There are so many starving coders out there There are no starving traders with profitable strategies
Ignored
Focus on 1-2-3 and strength.....and I analyse= the best values before long tests
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot1.png
Size: 98 KB
Vucking good EA coder...
 
 
  • Post #16
  • Quote
  • Aug 2, 2018 11:56pm Aug 2, 2018 11:56pm
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,507 Posts
Quoting RondaRousey
Disliked
Coding for a profitable strategy. No deal A profitable strategy for a profitable strategy. Deal There are so many starving coders out there There are no starving traders with profitable strategies
Ignored
And I have nearly every filter as "one-line-solution"......
And test several trailings.....
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot1.png
Size: 1.1 MB
Vucking good EA coder...
 
 
  • Post #17
  • Quote
  • Aug 3, 2018 1:08am Aug 3, 2018 1:08am
  •  terminator12
  • Joined Dec 2012 | Status: Member | 835 Posts
Quoting reteid2222
Disliked
{quote} I dont discuss weather who is starving....yesterdays last EA.... {image}
Ignored
Is it martingale ,
 
 
  • Post #18
  • Quote
  • Aug 3, 2018 1:22am Aug 3, 2018 1:22am
  •  reteid2222
  • Joined Aug 2015 | Status: Member | 2,507 Posts
Quoting terminator12
Disliked
{quote} Is it martingale ,
Ignored
NO...thx I add this!
Vucking good EA coder...
 
 
  • Post #19
  • Quote
  • Edited at 7:37am Aug 3, 2018 1:33am | Edited at 7:37am
  •  terminator12
  • Joined Dec 2012 | Status: Member | 835 Posts
Quoting reteid2222
Disliked
{quote} NO...thx I add this!
Ignored
Ok , Are u going to give it to us , Please m Share with us
 
 
  • Post #20
  • Quote
  • Aug 3, 2018 8:33am Aug 3, 2018 8:33am
  •  anti-flash
  • Joined Jul 2018 | Status: ... | 259 Posts
Quoting RondaRousey
Disliked
Coding for a profitable strategy. No deal
Ignored
Too late, wasn't this a profitable strategy revealed for free?

Quoting RondaRousey
Disliked
Find some of the worst traders on FF and there are so many of them to choose from, ranging from red flag members to newbies, AND DO THE OPPOSITE. Simple way to be profitable Works all the time.
Ignored
Just need to wait unti FF implements an "order book" like Oanda's with the 'Trades' section.

Toxic Flow for FX Brokers.
 
 
  • Platform Tech
  • /
  • Only about making much money, requesting EAs and myself
  • Reply to Thread
    • Page 1 23456 14
    • Page 1 234 14
0 traders viewing now
  • More
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2022