Trading the forex fully automated martingale

i am a coward.

goodbye dave.
018.png


where is dan?


when i get rich, i am gonna buy two or three pairs of panties, and i am gonna wash em out at least once a month even if they dont need it.

ok, let me spell it out for you..

i need $25,000,000.00 so i can get a motel room and play the forek.

if that isnt a good enough reason for you, well then...
 
Last edited by a moderator:
Broadly speaking, (as not to lead you to divulge anything proprietary), how do you manage to bypass the expectation value issue?
 
  • Thunk-Provoking
Reactions: CoolSixtyNiner
Broadly speaking, (as not to lead you to divulge anything proprietary), how do you manage to bypass the expectation value issue?
i have no idea what that means...

and just fyi, that would require me to discuss the internals of my algo, which i will not do.

i think that i am now finished.

//risk model modified

//gogo
double wantlots=0;
double baselots=0.01;

double mx1=1;
double mx2=4;

if( pos> 2 ) wantlots+=(baselots*mx1);
if( pos> 4 ) wantlots+=(baselots*mx1);
if( pos> 6 ) wantlots+=(baselots*mx1);
if( pos> 8 ) wantlots+=(baselots*mx1);
if( pos>10 ) wantlots+=(baselots*mx2);
if( pos>12 ) wantlots+=(baselots*mx2);
if( pos>14 ) wantlots+=(baselots*mx2);
if( pos>16 ) wantlots+=(baselots*mx2);
if( pos>18 ) wantlots+=(baselots*mx2);
if( pos>20 ) wantlots+=(baselots*mx2);
if( pos>22 ) wantlots+=(baselots*mx2);
if( pos>24 ) wantlots+=(baselots*mx2);
if( pos>26 ) wantlots+=(baselots*mx2);
if( pos>28 ) wantlots+=(baselots*mx2);

019.png
 
Last edited by a moderator:
How are you getting the system to place the automatic trades?
MetaTrader 4 (MT4) features a built-in programming language called MQL4 (MetaQuotes Language 4). MQL4 is specifically designed for developing trading algorithms, custom indicators, scripts, and automated trading strategies (Expert Advisors) for the MT4 platform.

### Key Features of MQL4:

1. **Syntax**: MQL4 has a syntax similar to C/C++, making it relatively easy to learn for those familiar with these languages. It includes control structures like loops, conditional statements, and functions.

2. **Event-Driven**: The language supports event-driven programming, which allows developers to handle different events like market price changes, user actions, or timer events.

3. **Built-in Functions**: MQL4 provides a range of built-in functions for technical analysis, mathematical operations, and trading operations (like opening, modifying, and closing orders).

4. **Object-Oriented**: MQL4 supports object-oriented programming, enabling developers to create reusable code through classes and objects.

5. **Libraries**: Developers can create libraries of functions and classes that can be reused across different scripts and Expert Advisors.

6. **Debugging Tools**: MT4 includes debugging tools that allow developers to test and debug their code in a simulated environment before deploying it in live trading.

7. **Backtesting**: MQL4 allows users to backtest their trading strategies against historical data, helping them to optimize their algorithms before using them in real market conditions.

### MetaTrader 4 Environment:

- **User-Friendly Interface**: MT4 offers a graphical interface that makes it easy for traders to analyze the market, execute trades, and manage their accounts.
- **Charting Tools**: It includes advanced charting tools with multiple timeframes and a wide variety of technical indicators.
- **Community Support**: There's a strong community around MT4, with numerous forums, blogs, and resources where traders and developers share their experiences and code.

Overall, MQL4 and the MetaTrader 4 platform together provide a powerful environment for algorithmic trading, catering to both novice and experienced traders.

we are in the home stretch.

020.png


when i used to be homeless, i would go into starbucks and drink milk with chocolate.

vroom..

now they keep that behind the counter.
 
Sorry, I should have been more specific
Is it buying/selling the shares automatically or do you have to do that yourself?
 
Sorry, I should have been more specific
Is it buying/selling the shares automatically or do you have to do that yourself?
i am running fully automated trading for forex.
021.png


//my risk model has been modified.

//gogo
double wantlots=0;
double baselots=0.01;

double mx1=1;
double mx2=4;

if( pos> 2 ) wantlots+=(baselots*mx1);
if( pos> 4 ) wantlots+=(baselots*mx1);
if( pos> 6 ) wantlots+=(baselots*mx1);
if( pos> 8 ) wantlots+=(baselots*mx1);
if( pos>10 ) wantlots+=(baselots*mx2);
if( pos>12 ) wantlots+=(baselots*mx2);
if( pos>14 ) wantlots+=(baselots*mx2);
if( pos>16 ) wantlots+=(baselots*mx2);
if( pos>18 ) wantlots+=(baselots*mx2);
if( pos>20 ) wantlots+=(baselots*mx2);
if( pos>22 ) wantlots+=(baselots*mx2);
if( pos>24 ) wantlots+=(baselots*mx2);
if( pos>26 ) wantlots+=(baselots*mx2);
if( pos>28 ) wantlots+=(baselots*mx2);

//wantlots=0;

if(GlobalVariableCheck("DISABLED")) wantlots=0;
//if(AccountMargin()==0 && pos<40) wantlots=0;
//if(AccountMargin()==0) wantlots=0;
//GlobalVariableDel("DISABLED");

if(AccountFreeMargin()<(AccountBalance()*0.10)) wantlots=0;
 
Ah thank you, these technical terms can be quite confusing
trading is the most difficult problem i have ever tackled.

thank you.

022.png

if someone would be kind enough to call dan and invite him here, i will award to you 1/1000th of one share of my company, redeemable as soon as my company is trading in excess of $75,000,000,000.00

that is a fairly generous offer.

i will even throw in a $15,000,000.00 amazon.com gift card to spice up the offer.

 
Last edited by a moderator:
NEW POSITION OPENED

024.png
Mod Note: 5 minutes later...
POSITION CLOSED

025.png

I STUDIED COUNSELING.

I COULD SIT ACROSS FROM A DOZEN PHD's IN COUNSELING AND ROCK THE CONVERSATION.

I GOTTA BUY SOME FRESH'ish PANTIES, CUZ THE ONES I GOT ON ARE STARTING TO ATTRACT FLIES.

ALL TRADES ARE CLOSEED
 
Last edited by a moderator:
Back