@excellingtrade There was news that Upstox received 25mln $ funding in June or thereabouts. How did they manage to go from that peak to this?
jetset
@jetset
Posts made by jetset
-
RE: When will UPSTOX API be restored ?
-
Margin calculator for Options is wrong? Premium is added instead of subtracted
See attached screenshot:
It shows net premium as negative, which is correct. But the the total amount is being calculated as if it was positive.
-
RE: Your request has timed out
SEBI Scores seems to be the right course of action, given the really slow response times from Upstox. Thanks for informing us.
-
RE: Urgent: Orders are not getting modified through API
The error has changed now:
{"code":408,"status":"Request Time-out","timestamp":"2019-02-22T11:02:55+05:30","message":"timeout","error":{"reason":"Your request has timed out"}}
-
Urgent: Orders are not getting modified through API
I am able to modify orders through web interface, but they are failing through the API. The returned response is:
{"code":400,"status":"Bad Request","timestamp":"2019-02-22T10:04:06+05:30","message":"Can not modify this order.","error":{"name":"Error","reason":"Can not modify this order."}}
Please don't ask me to post my code or order id. My code has been working fine for the last 30+ days. And the problem is not specific to a particular order id. It's failing for all orders.
The problem is at your end.
-
RE: Historical data API fucks up..again!
This is the last straw for me; I am shifting to a better platform.
The last two days went perfect and in fact, I was going to congratulate the team today. And then this happened. Historical API and web charts not working since the last 90 minutes.
More than the problem itself, I am dismayed that there is no communication from Upstox about the status, ETA, etc.
-
RE: Leaving Upstox
@guest said in Leaving Upstox:
If u need granullar data, simply create candles on local machine from websocket data...
Note that: websocket feed is a subset of the complete feed. So the OHLC candles created from websocket data will not be exactly the same as actual candles. (But they will be reasonably similar)
-
RE: Limitation of web sockets
@rishi123 I don't need it myself and I am not using python for my upstox client, but for other projects, I have used https://github.com/django/channels when creating websocket servers. If you are already familiar with django creating a websocket proxy is about a day's effort.
-
RE: Limitation of web sockets
@excellingtrade Strategy can be to create a proxy. The strategy programs connect to the proxy program which can support multiple websockets. The proxy in turn opens a single websocket to Upstox API. Whenever data arrives on the Upstox websocket, the proxy relays the information to each local websocket.
This is similar to what you described earlier, but instead of storing the data in files, the proxy relays it via local websockets.
-
RE: [Solved] Historical OHLC API is not working at all
I figured it out myself: when
start_date
andend_date
both are correctly specified, it works fine.This is in contrast with the documentation which says that
start_date
andend_date
have default values.