Welcome to NexusFi: the best trading community on the planet, with over 150,000 members Sign Up Now for Free
Genuine reviews from real traders, not fake reviews from stealth vendors
Quality education from leading professional traders
We are a friendly, helpful, and positive community
We do not tolerate rude behavior, trolling, or vendors advertising in posts
We are here to help, just let us know what you need
You'll need to register in order to view the content of the threads and start contributing to our community. It's free for basic access, or support us by becoming an Elite Member -- see if you qualify for a discount below.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
-I run a strategy constantly in sim mode.
-The indicator plots the equity curve for the strategy on the chart (or anywhere else where it could be made visible.)
-It lets me apply two preferred EMA's to the equity curve.
-I can then run a similar strategy live or on another sim account and access the pair of EMA's for use as a filter for whether to take trades or not. I.e. when the fast EMA is above the slow, trades can be entered. Otherwise they can't.
I'd prefer it on NT, but would consider other platforms. And I'd welcome bids for creating such an indicator.
Thanks for your attention!
Can you help answer these questions from other members on NexusFi?
{
set "connector" color (color plotted from the prior bar to the current bar) for
cases where open equity crosses zero or goes from zero to a non-zero value; the
connector color will be determined by the current bar open equity value
}
if OpenEquity[1] <= 0 and OpenEquity > 0 then
SetPlotColor[1]( 1, PositiveOpenEquityColor )
else if OpenEquity[1] >= 0 and OpenEquity < 0 then
SetPlotColor[1]( 1, NegativeOpenEquityColor );
{ ** Copyright ? TradeStation Technologies, Inc. All Rights Reserved **
** TradeStation reserves the right to modify or overwrite this analysis technique
with each release. ** }