Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Conditioner Builder Indicator Access
Collapse
X
-
Conditioner Builder Indicator Access
I decided today to jump in and write a simple crossover stragegy using 2 KwikPop indicators. I began the process but only found one of the indicators to be shown in the Condition Builder. The other does exist as I am currently using it on my charts but does not show up in the Condition Builder indicator drop down list. Where do I go from here??Tags: None
-
Thank you Ray. I spoke to Kwik Pop and solved the first problem. I have now created and compiled my strategy which is simply to plot an arrow when a crossover of the 2 indicators occurs. I have installed the strategy and it is not plotting. I have also tried another strategy provided by another KwikPop user that I know is being used by a lot of people and that one is not working for me as well. I have turned Chart Trader off on alll my charts. I have tried recreating new charts and I have logged off and on again to Ninja Trader. Nothing seems to work for me.
I hate being new to anything but here I go again. I have viewed the videos 4 times and looked thru the help screens.
Can you give me some direction please?
Comment
-
Hi lpart,
Please check the error logs in the 'Log' tab of the Control Center for anything out of the ordinary. This tip will help in the general procedure of debugging and you may find it useful.
If you still cannot get it to work please post some code snippets that you think are causing problems and I'll take a look at them for you. Cheers and have a good weekend.Josh P.NinjaTrader Customer Service
Comment
-
Thanks Josh. I am new and trying something very simple by using the Strategy Wizard. I don't want to learn C++. I worked with Easy Lanquage a little and am not interested in starting over on another language. Ninja needs some significantly better tutelage for this.
I am astonished at it's length. I am new to this forum and it's use. I am trying to attach the .cs file for you.
Here goes.Attached Files
Comment
-
Hi lpart,
The reason you don't see the triangles you are drawing is because you are drawing them at a price of 0. Your chart isn't usually all the way down there so the triangles are out of the viewable range.
Your code:
The highlighted red '0' is the value you want to modify to determine where on the price axis the triangle will lie.Code:DrawTriangleUp("My triangle up" + CurrentBar, 0, [COLOR=Red]0[/COLOR], Color.Lime);
This modification will place your triangle at the close of the current bar. If you wanted it at the low of the bar you can do Low[0]. You can also fudge around the placement of the triangle with the use of some basic arithmetic operations.Code:DrawTriangleUp("My triangle up" + CurrentBar, 0, [COLOR=Red]Close[0][/COLOR], Color.Lime);
TickSize is a variable that contains the tick size of your current instrument. If you were charting on a stock the tick size would usually be 0.01.Code:DrawTriangleUp("My triangle up" + CurrentBar, 0, [COLOR=Red]Low[0] - 5 * TickSize[/COLOR], Color.Lime);
Hope that helps.Josh P.NinjaTrader Customer Service
Comment
-
Josh. Thank you very much. That did the trick!!
Do you do this for a living or are just a helpful forum member? If you do this for a living I would like to know how to contact you down the road when I get my act together for a little more involved strategy development.
Comment
-
I am on contract with NinjaTrader to provide NinjaScript support when
needed. There is a list of available consultants that can help you with
script development at the following link.
http://www.ninjatrader.com/webnew/partners_onlinetrading_NinjaScript.htmJosh P.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
637 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
366 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
107 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
569 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
571 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment