trading Questions
3
Solved
I am trying to download historical price data of BTC/USD perpetual futures using binance's api for coin futures, specifically, I'd like to use this endpoint. However, I cannot find what 'symbol' I ...
Ozzy asked 18/9, 2020 at 22:10
2
Solved
I currently working on an implementation of the Kraken API for Java. I am using this sample code I found on http://pastebin.com/nHJDAbH8.
The general usage as described by Kraken (https://www.krake...
8
Solved
I have a trading bot which operates in 'ADAUSDT' with dynamic quantities for buying and selling, being my whole USDT balance the initial quantity, and trading with that same balance + profits or lo...
Liverpudlian asked 30/6, 2021 at 17:11
3
I am trying to create a perpetual limit order using ccxt on okex exchange version 5.
The API is successfully placing orders(both limit and market) on spot exchange but not on perpetual exchange.
He...
1
Thank you all for your help so far. I have been coding many different strategies in pinescript so far, and I have read through pinescript manual and many google articles, but I am still confused as...
Misname asked 22/1, 2021 at 4:45
3
I am trying to apply the Hurst Exponent on SPY closing prices on a rolling window. The below code (which I got from here: https://www.quantstart.com/articles/Basics-of-Statistical-Mean-Reversion-Te...
Meredi asked 18/7, 2019 at 14:12
3
Solved
I have a trading bot that trades multiple pairs (30-40). It uses the previous 5m candle for the price input. Therefore, I get 5m history for ALL pairs one by one. Currently, the full cycle takes ab...
Aesculapian asked 21/8, 2020 at 1:30
2
I'm currently trying to set up a script to generate conditional alerts whenever another script displays several specific data points.
input(type=source) works no problem, but as soon as I try to ad...
Displease asked 1/7, 2020 at 20:54
2
Solved
I am trying to download historical data from Yahoo using Pandas datareader. This is the code that I normally use:
import pandas_datareader as pdr
df = pdr.get_data_yahoo('SPY')
However, I started ...
Transcribe asked 2/7, 2021 at 19:7
3
I'm looking for a Python plugin that would calculate the realized P&L for a number of stock transactions using the FIFO method.
For example, assume we have the following three MSFT trades:
+75 ...
4
Solved
I would like to read the price volume data of Amibroker stock symbols using python. I cannot find anything useful on google for doing this. Anyone can help?
1
I'm getting the error line 13: Could not find function or function reference 'ema'. When I know for a fact ema is a function.
I'm trying to do a simple strategy, where it enters a long trade if the...
Chaos asked 14/11, 2021 at 22:24
2
Solved
I am using the IBrokers package and twsInstrument and for some reason it gives me an error using the simplest of methods.
require("IBrokers")
require("twsInstrument")
tws <- ConnectIB()
past.da...
4
Solved
Hey everyone, I was wondering how would I start programming an interface to trading stocks in Etrade in python. I am attempting to make an automated trading bot, but there is no api publicly availa...
Combinative asked 9/5, 2010 at 7:31
5
so I've followed the steps here to the letter: https://www.reddit.com/r/algotrading/comments/c81vzq/td_ameritrade_api_access_2019_guide/ in an effort to get a refresh token so that I can build a cl...
Spaceship asked 4/4, 2020 at 16:58
2
I'm playing with Binance API to make my trading bot with Python 3.6. and CCXT library (here you find the docs ).
One very useful thing they have in their site is the capability to place orders for...
5
I'm a beginner/intermediate Python programmer but I haven't written an application, just scripts. I don't currently use a lot of object oriented design, so I would like this project to help build m...
Extraditable asked 23/3, 2011 at 1:26
1
Solved
My strategy() is fully working but now I'm trying to manage how money is put in the trade.
HERE'S MY CURRENT SITUATION :
I have a SL set at the lowest low of the last 10 bars and a TP set at 1.5xSL...
Noonberg asked 19/7, 2020 at 12:5
2
Solved
I am trying to add another condition to the solution in this post. I want the stop loss to move by 10 pips when a trade is in 10 pips profit. To be more specific, say I've set a pending buy order a...
Voidance asked 16/5, 2019 at 21:46
3
Solved
After getting data of the SPY from Yahoo I create a channel of closing prices using, as you can see below, the Max and Min rolling window. The columns are HC and HL.
I need to create a column (whi...
Clifton asked 25/7, 2019 at 12:54
2
Solved
I want to process stock level-2 data in pandas. Suppose there are four kinds data in each row for simplicity:
millis: timestamp, int64
last_price: the last trade price, float64,
ask_queue: the v...
Jumbala asked 18/7, 2019 at 4:0
1
I am consuming the Kraken API, and I am not able to find a good explanation to the info I have in the response.
Actually, for a given pair, I have the following info:
altname = alternate pair nam...
1
I would like to return an array from my function, how can I do that?
Look!
int GetOrdresVente(){
int ordrevente;
int Tabordresvente[];
for(int j = OrdersTotal() - 1; j >= 0 ; j--){
if(Order...
Breastpin asked 16/4, 2018 at 5:53
1
I am trying to capture real-time streaming financial time data via Python. I want to initially store the information in a database and then at a later date further develop a program to analyz...
2
Yahoo Finance changed its web page formats last week (again) and the data isn't copyable, downloadable, or scrapeable, since the data is apparently loaded indirectly. (I can see it in the debugger....
Guib asked 31/7, 2016 at 1:42
1 Next >
© 2022 - 2025 — McMap. All rights reserved.