(If you already have an account, login at the top of the page)
futures io is the largest futures trading community on the planet, with over 100,000 members. At futures io, our goal has always been and always will be to create a friendly, positive, forward-thinking community where members can openly share and discuss everything the world of trading has to offer. The community is one of the friendliest you will find on any subject, with members going out of their way to help others. Some of the primary differences between futures io and other trading sites revolve around the standards of our community. Those standards include a code of conduct for our members, as well as extremely high standards that govern which partners we do business with, and which products or services we recommend to our members.
At futures io, our focus is on quality education. No hype, gimmicks, or secret sauce. The truth is: trading is hard. To succeed, you need to surround yourself with the right support system, educational content, and trading mentors – all of which you can find on futures io, utilizing our social trading environment.
With futures io, you can find honest trading reviews on brokers, trading rooms, indicator packages, trading strategies, and much more. Our trading review process is highly moderated to ensure that only genuine users are allowed, so you don’t need to worry about fake reviews.
We are fundamentally different than most other trading sites:
We are here to help. Just let us know what you need.
We work extremely hard to keep things positive in our community.
We do not tolerate rude behavior, trolling, or vendors advertising in posts.
We firmly believe in and encourage sharing. The holy grail is within you, we can help you find it.
We expect our members to participate and become a part of the community. Help yourself by helping others.
You'll need to register in order to view the content of the threads and start contributing to our community. It's free and simple.
public override object Clone()
{
return new MedianRenkoBarsType();
}
public override int DaysBack
{
get { return Gui.Chart.ChartData.DaysBackTick; }
}
public override int DefaultValue
{
get { return 4; }
}
public override string DisplayName
{
get { return "MedianRenko"; }
}
public override bool IsIntraday
{
get { return true; }
}
public override bool IsTimeBased
{
get { return false; }
}
public override int MaxLookBackDays
{
get { return 10; }
}
public override int MaxValue
{
get { return -1; }
}
public override double GetPercentComplete(Bars bars, DateTime now)
{
throw new ApplicationException("GetPercentComplete not supported in " + DisplayName);
}
public MedianRenkoBarsType() : base(PeriodType.Custom5) {}
public override int SortOrder
{
get { return 13007; }
}
Well, I can't read Ninja but this should help you get started. I became interested in Renko bars awhile back and wrote several TS scripts. BTW, you do know that you can set TOS to display Renko bars? STYLE>>AGGREGATION>>RANGE, then go back and STYLE>>SETTINGS>>TIME_AXIS>>RANGE_TYPE>>RENKO_BARS.
my "renkosizeup" and "renkosizedown" .0005 input settings are for forex. if you trade something else, you might want more convenient default settings. The above code won't display bricks but the advantage is that you'll be able to see price/time on the chart and in the lower study (arrows) detect bricks forming. Best of both worlds, I think.
Last edited by tangerine; August 26th, 2015 at 09:47 AM.