Page 1 of 56

$TRILLION STRATEGY

Posted: Fri Feb 02, 2007 4:16 pm
by TheRumpledOne
There seems to be a renewed interest in the

$TRILLION STRATEGY

Image


ELD and Workspace attached.

***NOTES***

You need to setup a session called FOREX DST BEFORE you download the workspace or you will get errors when loading.



Remember to download and import the ELD before you open the workspace!


A MUST READ:


http://www.optionetics.com/articles/article.asp?id=8558

MONEY MANAGEMENT MATRIX spreadsheet ATTACHED

Posted: Fri Feb 02, 2007 4:22 pm
by TheRumpledOne
Posted - 01/10/2006 08:10:46

I saw this last night:

"How To Make A Million In 40 Trades"

http://www.tradeology.com/million-dollar-trade.html

I figured if he can, why can't anyone?

So I created...

"How to turn $1,000 into TEN TRILLION DOLLARS in a year and still take 2 weeks off!"

You start with $1000.00 and make 10 pips a day trading FOREX.


Attached is the Excel file.


*** ATTENTION FELLOW TRADERS ***

THIS IS FOR DEMONSTRATION PURPOSES ONLY.


Code: Select all

{$TRILLION}
 
{Programmer:  Avery T. Horton, Jr.  aka TheRumpledOne

*** ATTENTION FELLOW TRADERS ***

THIS IS FOR DEMONSTRATION PURPOSES ONLY.
}
 
Inputs:   
 
iMaxDollarLoss(100),  // IN DOLLARS
iTarget(130),         // IN DOLLARS
iQuantity(1),         // IN LOTS / CONTRACTS / SHARES
 
iActionBar(0);        // BAR TO BASE ACTION ON, 0 = CURRENT BAR, 1 = 1 BAR AGO
 
Variables:
 
sLgEntryTrigger( false ),   // IF TRUE BUY (LONG)
sShEntryTrigger( false ),   // IF TRUE SELL (SHORT)
 
DayTop( 0 ),                // TOP OF PREVIOUS DAY'S CANDLE BODY
DayBottom( 0 ),             // BOTTOM OF PREVIOUS DAY'S CANDLE BODY
DayHigh( 0 ),               // TODAY'S HIGH
DayLow( 0 ) ;               // TODAY'S LOW
 
 
{*************************************************}
{ INITIALIZE                                      }   
{*************************************************}
 
DayHigh    = HighD(0) ;   
DayLow     = LowD(0) ;
 
DayBottom  = minlist(OpenD(1),CloseD(1));
DayTop     = maxlist(OpenD(1),CloseD(1));
 
 
 
{*************************************************}
{ ENTRIES                                         }   
{*************************************************}
 
 
sLgEntryTrigger = ( close crosses above DayTop ) ;    // TRUE IF TOP CROSSED 
 
sShEntryTrigger = ( close crosses below DayBottom) ;  // TRUE IF BOTTOM CROSSED
 
if MARKETPOSITION = 0 
and sLgEntryTrigger[iActionBar]
   then buy iQuantity shares this bar on close;
 
if MARKETPOSITION = 0 
and sShEntryTrigger[iActionBar]
    then sell short iQuantity shares this bar on close;
 
 
{*************************************************}
{ STOPS                                           }   
{*************************************************}
 
SetStopPosition ;
 
SetProfitTarget( iTarget ) ;
 
SetStopLoss( iMaxDollarLoss ) ;
 
SetExitOnClose;

Posted: Fri Feb 02, 2007 5:30 pm
by rrobin
Make the Trillion,
buy TS,
fire the ones you want,
and grin. :P

LOL

Posted: Fri Feb 02, 2007 8:02 pm
by TheRumpledOne
Wouldn't it be more fun to compete with TS and bring them to their knees?

You know, knock them out of the #1 rated position.

Now that would be sweet!

How's "TRO TRADING" sound? LOL!

Posted: Fri Feb 02, 2007 8:05 pm
by TheRumpledOne
http://www.forexmarkethours.com/

Forex trading hours, trading time:

New York opens 8:00 am to 5:00 pm EST
Tokyo opens 7:00 pm to 4:00 am EST
Sydney opens 5:00 pm to 2:00 am EST
London opens 3:00 am to 12:00 noon EST


Hours when two sessions are overlapped:

New York and London — 8:00 am — 12:00 noon EST
Sydney / Tokyo — 7:00 pm — 2:00 am EST
London /Tokyo — 3:00 am — 4:00am EST

Posted: Sun Feb 04, 2007 11:36 pm
by cheelu
Hi TRO,

Thanks a trillion for posting this strategy again. I do have a few questions. I'm unable to login to tradestation forum to see the past discussions. So I apologize if this is a repeated question.

If im looking to enter long , I enter above yesterday's close.
since a new day's candle starts forming at 5pm, and since its continously trading, it would be at yesterday's close already. Do I enter that time itself?

Thanks

Posted: Sun Feb 04, 2007 11:58 pm
by TheRumpledOne
You enter long at the candle body top which is the maximum of close and open.

I set my session to "close" 1 hour BEFORE the NY close at 5PM, so I can get my entry executed.

HTH.

to TheRumpledOne,

Posted: Mon Feb 05, 2007 11:38 am
by Jeff
Hi,
You've posted an almost full copy of http://forexmarkethours.com home page earlier.
Please, whenever you have time, make some corrections, so it does not look like a copy. Thank you!

Posted: Tue Feb 06, 2007 1:13 pm
by BP
TheRumpledOne wrote:Posted - 01/10/2006 08:10:46


*** ATTENTION FELLOW TRADERS ***

THIS IS FOR DEMONSTRATION PURPOSES ONLY.


Code: Select all

{$TRILLION}
 
{Programmer:  Avery T. Horton, Jr.  aka TheRumpledOne

*** ATTENTION FELLOW TRADERS ***

THIS IS FOR DEMONSTRATION PURPOSES ONLY.
}
 
Inputs:   
 
iMaxDollarLoss(100),  // IN DOLLARS
iTarget(130),         // IN DOLLARS
iQuantity(1),         // IN LOTS / CONTRACTS / SHARES
 
iActionBar(0);        // BAR TO BASE ACTION ON, 0 = CURRENT BAR, 1 = 1 BAR AGO
 
Variables:
 
sLgEntryTrigger( false ),   // IF TRUE BUY (LONG)
sShEntryTrigger( false ),   // IF TRUE SELL (SHORT)
 
DayTop( 0 ),                // TOP OF PREVIOUS DAY'S CANDLE BODY
DayBottom( 0 ),             // BOTTOM OF PREVIOUS DAY'S CANDLE BODY
DayHigh( 0 ),               // TODAY'S HIGH
DayLow( 0 ) ;               // TODAY'S LOW
 
 
{*************************************************}
{ INITIALIZE                                      }   
{*************************************************}
 
DayHigh    = HighD(0) ;   
DayLow     = LowD(0) ;
 
DayBottom  = minlist(OpenD(1),CloseD(1));
DayTop     = maxlist(OpenD(1),CloseD(1));
 
 
 
{*************************************************}
{ ENTRIES                                         }   
{*************************************************}
 
 
sLgEntryTrigger = ( close crosses above DayTop ) ;    // TRUE IF TOP CROSSED 
 
sShEntryTrigger = ( close crosses below DayBottom) ;  // TRUE IF BOTTOM CROSSED
 
if MARKETPOSITION = 0 
and sLgEntryTrigger[iActionBar]
   then buy iQuantity shares this bar on close;
 
if MARKETPOSITION = 0 
and sShEntryTrigger[iActionBar]
    then sell short iQuantity shares this bar on close;
 
 
{*************************************************}
{ STOPS                                           }   
{*************************************************}
 
SetStopPosition ;
 
SetProfitTarget( iTarget ) ;
 
SetStopLoss( iMaxDollarLoss ) ;
 
SetExitOnClose;


TRO,

I am new on this forum. Is this an indicator that you have created? Can you create it for MT4? I use interbankfx. Also, I have not seen what you think of this strategy...but maybe I am just missing it.

Thanks,

BP

Re: to TheRumpledOne,

Posted: Tue Feb 06, 2007 6:37 pm
by TheRumpledOne
Jeff wrote:Hi,
You've posted an almost full copy of http://forexmarkethours.com home page earlier.
Please, whenever you have time, make some corrections, so it does not look like a copy. Thank you!


I made changes, hope you approve.

The reason I post the link AND the text is so if that site "goes away", the information is preserved. You never know...