public override void OnRenderTargetChanged()
{
myBitmap = LoadBitmapFromContentFile(System.IO.Path.Combine(N injaTrader.Core.Globals.UserDataDir, "cat.png"));
}
protected override void OnRender(NinjaTrader.Gui.Chart.ChartControl chartControl, NinjaTrader.Gui.Chart.ChartScale chartScale)
{
if (Bars == null || Bars.Instrument == null || myBitmap == null)
return;
RenderTarget.DrawBitmap(myBitmap, new SharpDX.RectangleF((float)ChartPanel.W - 1650, (float)ChartPanel.H -700, 150, 150), 1.0f, SharpDX.Direct2D1.BitmapInterpolationMode.Linear);
}
private SharpDX.Direct2D1.Bitmap LoadBitmapFromContentFile(string filePath)
{
if (RenderTarget == null) return null;
SharpDX.Direct2D1.Bitmap newBitmap;
// Neccessary for creating WIC objects.
SharpDX.WIC.ImagingFactory imagingFactory = new SharpDX.WIC.ImagingFactory();
SharpDX.IO.NativeFileStream fileStream = new SharpDX.IO.NativeFileStream(filePath, SharpDX.IO.NativeFileMode.Open, SharpDX.IO.NativeFileAccess.Read);
// Used to read the image source file.
SharpDX.WIC.BitmapDecoder bitmapDecoder = new SharpDX.WIC.BitmapDecoder(imagingFactory, fileStream, SharpDX.WIC.DecodeOptions.CacheOnDemand);
// Get the first frame of the image.
SharpDX.WIC.BitmapFrameDecode frame = bitmapDecoder.GetFrame(0);
// Convert it to a compatible pixel format.
SharpDX.WIC.FormatConverter converter = new SharpDX.WIC.FormatConverter(imagingFactory);
converter.Initialize(frame, SharpDX.WIC.PixelFormat.Format32bppPRGBA);
// Create the new Bitmap1 directly from the FormatConverter.
if (RenderTarget != null) newBitmap = SharpDX.Direct2D1.Bitmap.FromWicBitmap(RenderTarge t, converter);
else newBitmap = null;
SharpDX.Utilities.Dispose(ref bitmapDecoder);
SharpDX.Utilities.Dispose(ref fileStream);
SharpDX.Utilities.Dispose(ref imagingFactory);
return newBitmap;
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Adding Logo Causes Slowness
Collapse
X
-
Adding Logo Causes Slowness
When using this code found here It causes my indicator to destabilize and Ninjatrader stops working every now and then. Any way to avoid or correct this?
Code:Tags: None
-
Hello r3n3v,
Did you make modifications to that script? The code alone does not help to know what may be happening, do you see the same problem using the unmodified sample?
This could also relate to the image being used, have you tried another image?
Please let me know if I may be of further assistance.
Comment
-
Hello r3n3v,
Did you try the samples original image or a different one than you have used? It may be the image causing the problem if the original sample works fine. There is no specific documentation for the code you have used, that is an external library called sharpdx which NinjaTrader leverages for rendering. The linked sample is a generic sample found for use with sharpDX and has some modifications made to adapt to the NinjaTrader overrides.
Please let me know if I may be of further assistance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
599 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
344 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
558 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
557 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment