$TRILLION STRATEGY

trading strategies and money management discussion, code, results

Moderator: moderators

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15558
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

$TRILLION STRATEGY

Postby TheRumpledOne » Fri Feb 02, 2007 4:16 pm

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
Attachments
MoneyManagementChart.xls
(20 KiB) Downloaded 1695 times
$Trillion.tsw
(86.5 KiB) Downloaded 1293 times
$TRILLION.ELD
(30.24 KiB) Downloaded 1358 times
Last edited by TheRumpledOne on Fri Feb 23, 2007 1:22 am, edited 7 times in total.
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!

Please do NOT PM me with trading or coding questions, post them in a thread.

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15558
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Fri Feb 02, 2007 4:22 pm

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;
Attachments
10PipsADay.xls
(36.5 KiB) Downloaded 1720 times

rrobin
rank: 50+ posts
rank: 50+ posts
Posts: 112
Joined: Fri May 19, 2006 11:09 am
Reputation: 0
Location: Cedar Creek Lake, Texas
Gender: Male

Postby rrobin » Fri Feb 02, 2007 5:30 pm

Make the Trillion,
buy TS,
fire the ones you want,
and grin. :P

LOL

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15558
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Fri Feb 02, 2007 8:02 pm

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!
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15558
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Fri Feb 02, 2007 8:05 pm

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
Last edited by TheRumpledOne on Tue Feb 06, 2007 6:34 pm, edited 1 time in total.

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

cheelu
rank: <50 posts
rank: <50 posts
Posts: 2
Joined: Sun Feb 04, 2007 3:07 am
Reputation: 0
Gender: None specified

Postby cheelu » Sun Feb 04, 2007 11:36 pm

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

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15558
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Sun Feb 04, 2007 11:58 pm

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.
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

Jeff
rank: <50 posts
rank: <50 posts
Posts: 2
Joined: Mon Feb 05, 2007 11:28 am
Reputation: 0
Gender: None specified

to TheRumpledOne,

Postby Jeff » Mon Feb 05, 2007 11:38 am

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!

BP
rank: 50+ posts
rank: 50+ posts
Posts: 99
Joined: Tue Feb 06, 2007 12:58 pm
Reputation: 0
Location: Camp Hill, PA
Gender: Male

Postby BP » Tue Feb 06, 2007 1:13 pm

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

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15558
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Re: to TheRumpledOne,

Postby TheRumpledOne » Tue Feb 06, 2007 6:37 pm

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...
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.


Return to “strategy trading & money management”