NexusFi: Find Your Edge


Home Menu

 





Automate problem with order execution with renko chart


Discussion in MultiCharts

Updated
      Top Posters
    1. looks_one gettis with 6 posts (0 thanks)
    2. looks_two ABCTG with 3 posts (2 thanks)
    3. looks_3 Jura with 2 posts (2 thanks)
    4. looks_4 loantelligence with 1 posts (0 thanks)
    1. trending_up 4,529 views
    2. thumb_up 4 thanks given
    3. group 4 followers
    1. forum 12 posts
    2. attach_file 5 attachments




 
Search this Thread

Automate problem with order execution with renko chart

  #1 (permalink)
gettis
italy
 
Posts: 8 since Sep 2010
Thanks Given: 4
Thanks Received: 0

Hello
I have included a chart of the parabolic renko LE-SE and while on the graph you see an entry short and long entry signal is triggered when, when I put in automate order execution instead of sending only one order each bar continuously sends orders.Si You can 'solve?
Thank you

Attached Thumbnails
Click image for larger version

Name:	ord.GIF
Views:	275
Size:	71.2 KB
ID:	191003  
Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Futures True Range Report
The Elite Circle
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Deepmoney LLM
Elite Quantitative GenAI/LLM
The space time continuum and the dynamics of a financial …
Emini and Emicro Index
Ninja Mobile Trader VPS (ninjamobiletrader.com)
Trading Reviews and Vendors
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Get funded firms 2023/2024 - Any recommendations or word …
59 thanks
Funded Trader platforms
36 thanks
NexusFi site changelog and issues/problem reporting
25 thanks
The Program
20 thanks
GFIs1 1 DAX trade per day journal
19 thanks
  #2 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,431 since Apr 2013
Thanks Given: 481
Thanks Received: 1,623

gettis,

please provide some more information, starting with:

Do the orders get cancelled?
Do you use intrabar order generation?
Can you post the code you are using?

Regards,
ABCTG


gettis View Post
Hello
I have included a chart of the parabolic renko LE-SE and while on the graph you see an entry short and long entry signal is triggered when, when I put in automate order execution instead of sending only one order each bar continuously sends orders.Si You can 'solve?
Thank you


Follow me on Twitter Reply With Quote
Thanked by:
  #3 (permalink)
gettis
italy
 
Posts: 8 since Sep 2010
Thanks Given: 4
Thanks Received: 0



ABCTG View Post
gettis,

please provide some more information, starting with:

Do the orders get cancelled?
Do you use intrabar order generation?
Can you post the code you are using?

Regards,
ABCTG

Do not cancel orders but are placed large number of orders instead of only one buy and one sell.

I use this code,not use intrabar order generation :
************************************************************************
[IntrabarOrderGeneration = false]
inputs: AfStep( 0.02 ), AfLimit( 0.2 ) ;
variables: var0( 0 ), var1( 0 ), var2( 0 ), var3( 0 ) ;

Value1 = ParabolicSAR( AfStep, AfLimit, var0, var1, var2, var3 ) ;

if var2 = -1 then
Buy ( "ParLE" ) next bar at var1 stop ;
**********************************************************************
[IntrabarOrderGeneration = false]
inputs: AfStep( 0.02 ), AfLimit( 0.2 ) ;
variables: var0( 0 ), var1( 0 ), var2( 0 ), var3( 0 ) ;

Value1 = ParabolicSAR( AfStep, AfLimit, var0, var1, var2, var3 ) ;

if var2 = 1 then
Sell Short ( "ParSE" ) next bar at var1 stop ;

Reply With Quote
  #4 (permalink)
 
Jura's Avatar
 Jura   is a Vendor
 
Posts: 775 since Apr 2010
Thanks Given: 2,352
Thanks Received: 690


gettis View Post
Do not cancel orders but are placed large number of orders instead of only one buy and one sell.

Did you check if the `var1` value is a valid stop level? Otherwise your order will be cancelled immediately upon submitting.

Reply With Quote
Thanked by:
  #5 (permalink)
gettis
italy
 
Posts: 8 since Sep 2010
Thanks Given: 4
Thanks Received: 0


Jura View Post
Did you check if the `var1` value is a valid stop level? Otherwise your order will be cancelled immediately upon submitting.

Hello
How do I see if "VAR1" is a valid stop? The code I posted is the "PARABOLIC LE-SE" found in the basic indicators of Multicharts. When I insert it in the chart PARABOLIC works well because it darts input only once, but if I go inside with orders continuously inserts automatic buy and sell orders. Use this signal with graph Renko
Thank you

Attached Thumbnails
Click image for larger version

Name:	Parr_ULTIMO.GIF
Views:	225
Size:	89.4 KB
ID:	191079   Click image for larger version

Name:	grafico_PAR.GIF
Views:	254
Size:	43.3 KB
ID:	191080  
Reply With Quote
  #6 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,431 since Apr 2013
Thanks Given: 481
Thanks Received: 1,623

You can print "Var1" in your code to see if the value is valid.
You wrote that the orders don't get cancelled, but from your screenshot it appears the filled quantity is 0 and the order sent and fill/cancel time is equal. Can you check the logs in the Order and Position tracker, there might be an answer to what is going on in terms of an error message.
Regards,
ABCTG


gettis View Post
Hello
How do I see if "VAR1" is a valid stop? The code I posted is the "PARABOLIC LE-SE" found in the basic indicators of Multicharts. When I insert it in the chart PARABOLIC works well because it darts input only once, but if I go inside with orders continuously inserts automatic buy and sell orders. Use this signal with graph Renko
Thank you


Follow me on Twitter Reply With Quote
Thanked by:
  #7 (permalink)
gettis
italy
 
Posts: 8 since Sep 2010
Thanks Given: 4
Thanks Received: 0


ABCTG View Post
You can print "Var1" in your code to see if the value is valid.
You wrote that the orders don't get cancelled, but from your screenshot it appears the filled quantity is 0 and the order sent and fill/cancel time is equal. Can you check the logs in the Order and Position tracker, there might be an answer to what is going on in terms of an error message.
Regards,
ABCTG

Practically do not send orders to my broker because it would send so many; when she goes out the window of the orders I go on "IGNORE ORDERS" to try. It is not the same thing if I send the order or if I send it?

Attached Thumbnails
Click image for larger version

Name:	ORD_TRANSMIT.GIF
Views:	223
Size:	28.8 KB
ID:	191083   Click image for larger version

Name:	ORDINI.GIF
Views:	218
Size:	237.9 KB
ID:	191084  
Reply With Quote
  #8 (permalink)
 
Jura's Avatar
 Jura   is a Vendor
 
Posts: 775 since Apr 2010
Thanks Given: 2,352
Thanks Received: 690


gettis View Post
Practically do not send orders to my broker because it would send so many; when she goes out the window of the orders I go on "IGNORE ORDERS" to try. It is not the same thing if I send the order or if I send it?

I have trouble understanding what you mean here, can you perhaps expand on it or rephrase it?

Otherwise perhaps ABCTG understands what you mean.

Reply With Quote
Thanked by:
  #9 (permalink)
gettis
italy
 
Posts: 8 since Sep 2010
Thanks Given: 4
Thanks Received: 0

Sorry you are right but I do not write well in English
I repeat and I try to make myself understood. I put on a graph the signal "Parabolic Parabolic SE and LE"; for example, when the signal goes to buy instead of entering a single order to buy fits each bar a contract buy

Reply With Quote
  #10 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,431 since Apr 2013
Thanks Given: 481
Thanks Received: 1,623


It might be that the order gets rejected due to not specified TIF settings. Maybe the symbol mapping or the symbol itself is not properly set up. I would suggest to contact the Multicharts helpdesk, as they will be able to quickly help you and connect to you remotely if needed.

Regards,
ABCTG

Follow me on Twitter Reply With Quote




Last Updated on January 21, 2019


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts