Jump to content

Recommended Posts

  • Replies 412
  • Created
  • Last Reply

Top Posters In This Topic

Posted (edited)

In the quote...the 1500US includes a full seperate system historical backtester....to test out different situations and symbols, then replaying everything to find out. It is 300 extra..and worth it imho-Nate Just load the strat...and as many days as loaded it prints the stats...the auto is just a ATM system executed no backtesting...only on replay.

 

What do you mean by holding out for the backtester?
Edited by tradernate
Posted
http://my.jetscreenshot.com/demo/20140410-venq-75kb.jpg

 

 

enough to be able to write two lines with NinjaScript, the code exists

Give me a few more days

 

 

Well I'm glad to see the PPTBoxSL is in the condition builder. That means it can be used to build any strategy in the Ninja Strategy Builder. Only wish Cashmaniac was still around.

I hear he's very adept at ASD with the NTStrat Builder.

Btw enzofox here is a recent 1 hour webinar for using the NT Strat Builder and Condition builder.

Posted
I wrote that there is source code, those who have experience with Ninja Script takes 5 minutes to write strategy

Otherwise I'll pay 80 bucks for it write by an operator

 

the source code does not expose the indicator class to condition builder, so it cannot be done using the strategy script wizard

Posted (edited)
user33 is right, but it's not big deal to change it. I'll send later a PPTBoxSL version with an exposed trigger to use in a strategy builder for example...

 

As I promised, link below with the changed source of PPTBoxSL.

Box_signal is exposed to use in a strategy.

 

a newer version is available here: :)

http://indo-investasi.com/showthread.php/24211-The-box?p=324393&viewfull=1#post324393

 

I've changed the name of the original indicator to PPTBoxSLsig to omit any confusion in the future.

Very simple example how to use it in a strategy:

....

if (Position.MarketPosition == MarketPosition.Flat)

{

if (PPTBoxSLsig().Box_Signal[0] == 1)

{

EnterLong(DefaultQuantity, "");

}

 

if (PPTBoxSLsig().Box_Signal[0] == -1)

{

EnterShort(DefaultQuantity, "");

}

}

....

Cheers,

Edited by admis
Posted
As I promised, link below with the changed source of PPTBoxSL.

Box_signal is exposed to use in a strategy.

 

http://www.sendspace.com/file/orpspp

pass=indo-investasi

 

I've changed the name of the original indicator to PPTBoxSLsig to omit any confusion in the future.

Very simple example how to use it in a strategy:

....

if (Position.MarketPosition == MarketPosition.Flat)

{

if (PPTBoxSLsig().Box_Signal[0] == 1)

{

EnterLong(DefaultQuantity, "");

}

 

if (PPTBoxSLsig().Box_Signal[0] == -1)

{

EnterShort(DefaultQuantity, "");

}

}

....

Cheers,

 

Thanks for everything, because one thing you do not write for us? thanks

Posted

@admis ..THX a lot .. first time that i tried to make a strategie ...and with your file it just worked fine by using the wizard :D ... i will play around with it .. ...but i´ll be very carefull ...the first backtest was to good to be true :D

THX again ...

 

chripu

Posted
like i said ..first time for me ..so use carefully ....no garantie ... :)

and i think everybody can do that with the strategiewizard .... i´m old and no programmer at all ...dont even know to speak english very well .. and i did it with my first try... ;)

 

http://www.sendspace.com/file/46van9

 

thanks for sharing this!

 

I have a question: I don't see where in your code it checks if the position is flat, like from admis's code: "if (Position.MarketPosition == MarketPosition.Flat)", would that matter?

Posted

Hi Admis..Thank you for helping...your help is appreciated-Nate

 

As I promised, link below with the changed source of PPTBoxSL.

Box_signal is exposed to use in a strategy.

 

http://www.sendspace.com/file/orpspp

pass=indo-investasi

 

I've changed the name of the original indicator to PPTBoxSLsig to omit any confusion in the future.

Very simple example how to use it in a strategy:

....

if (Position.MarketPosition == MarketPosition.Flat)

{

if (PPTBoxSLsig().Box_Signal[0] == 1)

{

EnterLong(DefaultQuantity, "");

}

 

if (PPTBoxSLsig().Box_Signal[0] == -1)

{

EnterShort(DefaultQuantity, "");

}

}

....

Cheers,

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




×
×
  • Create New...