Login Page - Create Account

Support Board


Date/Time: Sat, 27 Apr 2024 02:08:01 +0000



UDP Text RELEASE_ALL_DLLS and ALLOW_LOAD_ALL_DLLS not works for me

View Count: 793

[2018-12-07 23:23:29]
TedMar - Posts: 189
RELEASE_DLL and ALLOW_LOAD_DLL include phat to dll file works, but RELEASE_ALL_DLLS and ALLOW_LOAD_ALL_DLLS not.


...
// char SendBuf[] = "RELEASE_ALL_DLLS"; //not works
char SendBuf[] = "RELEASE_DLL--D:\\SierraChart\\Data\\maslak.dll"; // Works
...

Any idea why?

UDP Interface
[2018-12-08 02:42:48]
Sierra Chart Engineering - Posts: 104368
We see the reason for the problem. This will be resolved in the next release.
Sierra Chart Support - Engineering Level

Your definitive source for support. Other responses are from users. Try to keep your questions brief and to the point. Be aware of support policy:
https://www.sierrachart.com/index.php?l=PostingInformation.php#GeneralInformation

For the most reliable, advanced, and zero cost futures order routing, *change* to the Teton service:
Sierra Chart Teton Futures Order Routing
[2018-12-16 23:58:45]
Kiwi - Posts: 374
Just confirming that the Python version works (I added a 1 millisecond delay after loading socket and instantiating the object sock before issuing commands).

import socket
from time import sleep
#UDP to socket
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sleep(0.0001)
sock.sendto(b"RELEASE_ALL_DLLS", ("127.0.0.1", 22903))
sock.sendto(b"ALLOW_LOAD_ALL_DLLS", ("127.0.0.1", 22903))

To post a message in this thread, you need to log in with your Sierra Chart account:

Login

Login Page - Create Account