Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Strategy Builder to identify Wiseman Fractal
Collapse
X
-
Strategy Builder to identify Wiseman Fractal
How do you tell the Strategy Builder to recognise when a Wiseman Fractal signal has been plotted. They are triangular shapes plotted on a price chart
ThanksTags: None
-
-
Hello Chris,
Thank you for the post.
This would depend on the indicator that you are using, do you have a link to the indicator being used? You would need to call the indicator by its name in code, and then access the Plot for the data you want. If the indicator draws drawing objects, it would be more difficult to use for signals, it would need to be programmed to use Plots instead.
If the indicator uses plots, the syntax may look similar to how you would call the Bollinger bands and one of its plots: https://ninjatrader.com/support/help...tsub=bollinger
I look forward to being of further assistance.
Comment
-
Is there any change? How can i read current state of Wiseman Fractal - Indicator? (No matches on documentation side)
What is the name of the indicator-file?
I can include the indicator via code / function request but i'm not able to find the related indicator-file this should be come as well as @RSI, @ADX etc. from distributor NinjaTrader?
Comment
-
Hello PeterGolz,
The most simple way to generate the code for this would be to use the strategy builder. You can form a condition using the indicator and then click ViewCode to see the exact syntax to use the indicator. Just a simple condition such as Close > indicator -> wiseman fractal
Please let me know if I may be of additional assistance.
Comment
-
There are several independent questions:
1.) No matches on documentation side could be found for Wiseman Fractal!?
2.) Where can i see the indicator sourcecode sutch as @RSI, @ATX etc.?
3.) How can i read the current state (arrows) of the indicator (Wiseman Fractal)?
(*.Value[0] dosen't work for example)
Comment
-
Hello PeterGolz,
Currently there is no documentation for this indicator.
The indicator is a internal indicator so this is not available as source code, it can be called from NinjaScript to add it visually.
The arrows are not something which is exposed it looks like it renders that. The indicator can be selected in the builder/manually coded to add it visually but I don't see that it can be used for conditions in any way.
Please let me know if I may be of additional assistance.
Comment
-
// Wiseman Fractal
if ((Low[0] >= Low[2])
&& (Low[1] >= Low[2])
&& (Low[3] > Low[2])
&& (Low[4] > Low[2])
)
{
Draw.TriangleDown(this, @"Fractal_1" + CurrentBar, false, 2, Low[2] - (1*TickSize), Brushes.Red);
}
if ((High[0] <= High[2])
&& (High[1] <= High[2])
&& (High[3] < High[2])
&& (High[4] < High[2])
)
{
Draw.TriangleUp(this, @"Fractal_1" + CurrentBar, false, 2, High[2] + (1*TickSize), Brushes.Blue);
}
Use this logic to create a custom indicator which match with the signals generated by Wiseman Fractals indicator. Attached is the custom indicator I created for version 8. It includes Divergence bar with Wiseman Fractals signals for the Wiseman Alligator strategy.Attached Files
- Likes 1
Comment
-
Hi. thanks for doing this. i have added it but cant use the indicator in ninjatrader editor when adding indicators to my automated strategy. I can right click it on a chart and add it but not able to use when building a strategy. Any advice? thanks.Originally posted by amul_shail2020 View Post// Wiseman Fractal
if ((Low[0] >= Low[2])
&& (Low[1] >= Low[2])
&& (Low[3] > Low[2])
&& (Low[4] > Low[2])
)
{
Draw.TriangleDown(this, @"Fractal_1" + CurrentBar, false, 2, Low[2] - (1*TickSize), Brushes.Red);
}
if ((High[0] <= High[2])
&& (High[1] <= High[2])
&& (High[3] < High[2])
&& (High[4] < High[2])
)
{
Draw.TriangleUp(this, @"Fractal_1" + CurrentBar, false, 2, High[2] + (1*TickSize), Brushes.Blue);
}
Use this logic to create a custom indicator which match with the signals generated by Wiseman Fractals indicator. Attached is the custom indicator I created for version 8. It includes Divergence bar with Wiseman Fractals signals for the Wiseman Alligator strategy.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
65 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
139 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
75 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
45 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
50 views
0 likes
|
Last Post
|

Comment