April 1st, 2013
Size: 53.99 MB
Downloaded: 47 times
1391
andby
This is the original code for Amibroker by Karthik. If you are interested you can program something for NT7 or make improvements for NT 6.5 code, which you can download here in the forum. I have noticed the VSA Indicator for NT 6.5 has often times false signals/ alerts. For example it tells you sometimes that there is a test bar, but there should be by definition not or vice versa. And many more little definition mistakes.
Hey Guys,
This indicator was developed by eDanny on the Ninja Support forum and it's something I was looking for for a while and finally found it.
It allows you to change the color of the candle outline to match the color of the candle. ie up candle green, outline/wick is green and so forth. Also you can adjust if the body is filled or hollow. It's very helpful for those who like to have a black background similar to tradestation.
Below is the Ninja Support forum link: https://ninjatrader.com/support/forum/showthread.php?t=14122&highlight=candle+outline+eDanny
Let me know if you have any questions.
Nick Faria
COMPATIBILITY: NinjaTrader6.5: Not tested, yet
NinjaTrader7: Yes- ZTrade101
Tick-level Market Replay data for NinjaTrader. Recorded time zone is CST.
Installation instructions:
1. Unzip to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
Tick-level Market Replay data for NinjaTrader. Recorded time zone is CST.
Installation instructions:
1. Unzip to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
Tick-level Market Replay data for NinjaTrader. Recorded time zone is CST.
Installation instructions:
1. Unzip to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
Installation instructions:
1. Unzip to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
(Updated 12/5/2009 to replace archive with regular .zip instead of .zipx format)
Installation instructions:
1. Unzip to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
Installation instructions:
1. Unzip to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
November 25th, 2009
Size: 57.81 MB
Downloaded: 143 times
192
cunparis
This is for CL (Crude Oil Futures) only.
Tick-level Market Replay data for NinjaTrader.
Installation instructions:
1. Unzip to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
Installation instructions:
1. Unzip to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
October 31st, 2009
Size: 7.53 MB
Downloaded: 163 times
169
cunparis
This is for CL (Crude Oil Futures) only.
Tick-level Market Replay data for NinjaTrader.
Installation instructions:
1. Unzip to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
Installation instructions:
1. Unzip to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
September 4th, 2009
Size: 27.04 KB
Downloaded: 158 times
119
websouth
Tick-level Market Replay data for NinjaTrader.
Installation instructions:
1. Unzip to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
This file is for the CL instrument only (CL 09-09 and CL 10-09).
Tick-level Market Replay data for NinjaTrader.
Installation instructions:
1. Unzip to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
The data for CL is only for half the month or so. Rest should be complete.
Tick-level Market Replay data for NinjaTrader.
Installation instructions:
1. Un-7zip to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
NOTE: If you need a 7-zip decompressor, go to www.7-zip.org or use WinRAR.
July 9th, 2009
Size: 30.71 MB
Downloaded: 143 times
84
Todd
Renko charts are price charts with rising and falling diagonal lines of boxes that are either filled or hollow. Renko charts are "time independent" charts that do not have constantly spaced time axes.
The word "Renko" comes from "Renga", the Japanese word for "brick". The filled and hollow squares that make up a Renko chart are often referred to as "bricks." Renko charts were popularized by Steve Nison in his book "Beyond Candlesticks".
Renko charts have a pre-determined "Brick Size" that is used to determine when new bricks are added to the chart. If prices move more than the Brick Size above the top (or below the bottom) of the last brick on the chart, a new brick is added in the next chart column. Hollow bricks are added if prices are rising. Black bricks are added if prices are falling. Only one type of brick can be added per time period. Bricks are always with their corners touching and no more than one brick may occupy each chart column.
It's important to note that prices may exceed the top (or bottom) of the current brick. Again, new bricks are only added when prices completely "fill" the brick. For example, for a 5-point chart, if prices rise from 98 to 102, the hollow brick that goes from 95 to 100 is added to the chart BUT the hollow brick that goes from 100 to 105 is NOT DRAWN. The Renko chart will give the impression that prices stopped at 100.
It's also important to remember that Renko charts may not change for several time periods. Prices have to rise or fall "significantly" in order for bricks to be added.
Here's some code I came up with from various samples to give me some peace of mind if you were to run your strategies unattended.
Nothing fancy, but it can be easily personalized with your own messages, input variables, etc.
Please test before using with real money!!!
Place in the Variables section...
private double priorCumProfit = 0;
Place at the beginning of the OnBarUpdate() section...
// At the start of a new session calculate the prior cum profit so it won't be included in the
// calculation. Need this for historical testing.
if (Bars.FirstBarOfSession)
{priorCumProfit = Performance.AllTrades.TradesPerformance.Currency.CumProfit;}
// *** Calculate the toal profit (cumulative profit minus prior profit plus the current position profit
double myMaxProfit = (double) 1000;
double myMaxLoss = (double) -1000;
double cumProfit = (double) Performance.AllTrades.TradesPerformance.Currency.CumProfit;
double curPosition = (double) Position.GetProfitLoss(Close[0], PerformanceUnit.Currency);
double totCumProfit = (double) cumProfit - priorCumProfit + curPosition ;
// *** STOP the strategy! if a total profit or loss exceeds the max
if (totCumProfit <= myMaxLoss || totCumProfit >= myMaxProfit)
{
if (Position.MarketPosition == MarketPosition.Long) {ExitLong("DMA: Exit Long - max Profit/Loss exceeded", "");}
if (Position.MarketPosition == MarketPosition.Short) {ExitShort("DMA: Exit Short - max Profit/Loss exceeded", "");}
Print(Time[0] + ": EXIT STRATEGY - Max Profit/Loss exceeded: $" + myMaxProfit + "/$" + myMaxLoss + ", Current: $" + totCumProfit);
return;
}
Installation instructions:
1. Unrar to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
Installation instructions:
1. Unrar to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
This data is not 100% perfect (in the later months, I get better at leaving Ninja up 24/7).
Installation instructions:
1. Unrar to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
This data is not 100% perfect (in the later months, I get better at leaving Ninja up 24/7).
Installation instructions:
1. Unrar to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
This data is not 100% perfect (in the later months, I get better at leaving Ninja up 24/7).
Installation instructions:
1. Unrar to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
This data is not 100% perfect (in the later months, I get better at leaving Ninja up 24/7).
Installation instructions:
1. Unrar to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
This data is not 100% perfect (the later months, I get better at leaving Ninja up 24/7).
Installation instructions:
1. Unrar to your Documents\NinjaTrader 6.5\db\data directory.
2. NinjaTrader should now show the extra dates on the Connect -> Market Replay screen.
April 12th, 2011 01:02 AM zwentz I think the days that are kind of messed up are like the 19th through the 25th. Regardless, this data really helps.
May 11th, 2010 08:03 AM IGNACIOHA Hello Big Mike, thank you very much... from Spain, the market replay data is very useful, it is not so easy to find thes
October 20th, 2010 10:05 AM szemetes fucking scammer, all the links are broken
October 20th, 2010 10:04 AM szemetes thanks
July 31st, 2009 07:24 PM tradercrm Thanks a mil for this, one of the few sites online where this can be found, at least from my searches. Will you be post
ing July ES as well?
Thanks again!
July 11th, 2009 10:40 AM mlomker Just paid for the BWT Autotrader and needed a way to test ATM strategies. This is a HUGE help. Thank you.
July 4th, 2009 02:11 AM Mokidoki Thanks for that Mike.
July 9th, 2009 02:02 AM LordAlfa Oops. Not 1 years' worth but thanks.
July 9th, 2009 01:58 AM LordAlfa Great. 1 year's worth of data. Thank you.
July 5th, 2009 08:48 PM Saroj 3rd attempt seems to have worked... no idea why
July 5th, 2009 05:04 PM Saroj sam, when I click to open this .rar file I get an error: "Unexpected end of archive" and the download time is very short
and the only file that shows up in the rar list is "6E 09-09.ntm" (size=7,906,345)... I'd love to get this data if you
July 6th, 2010 03:36 AM allexbur Hi Big Mike, I can't download file, browser says "Page not found" when i try
September 29th, 2009 05:20 AM cw30000 thank you very much
September 1st, 2009 08:35 PM HJay Hey Mike, this is awsome, just wish it had the YM. I know a few people on this site trade it. Thanks for the effort!!!
December 9th, 2009 11:22 PM Phriend This is great data! (Volume included so all my indicators work). Thanks, cunparis -- and I hope you will upload more f
July 6th, 2010 03:32 AM allexbur Hi Big Mike, I can't download file, browser says "Page not found" when i try
December 7th, 2009 07:20 PM mrticks Thanks for the update.
December 6th, 2009 01:52 AM Big Mike Guys sorry, it was zipped using .zipx, the newest protocol extension of zip, by mistake. I've now re-uploaded it as a n
ormal zip, try downloading it again.
December 6th, 2009 01:31 AM Phriend I also could not extract using Windows built-in unzip function or WinRar.
December 2nd, 2009 06:09 PM solarin Hi Big Mike, I downloaded your file but I cannot extract it, I'm using winrar v. 3.7.