python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Backtrder animated plotting
Im looking for a way to animate backtest plotting of the Backtrder. I searched for appropriate tools and I found FuncAnimation:
FuncAnimation(figure, animation_function, frames=None, init_func=None, f...
teralee
Votes: 0
Answers: 0
Expert Advisor timefilter doesn't work (mql5)?
I can't figure out why my timefilter doesn't work. Let's say I would like to only enter to positions between 7:35-11:30 and 14:30-22:30 and I don't want to enter a position on Friday.
The time filter ...
qwerqwer
Votes: 0
Answers: 1
Transfer USDT between spot and futures in Binance with ccxt python
import time
start = time.time()
exchange.sapi_post_futures_transfer({
'asset': 'USDT',
'amount': '10',
'type': 2,
})
end = time.time()
I want to take a long position in the spot market an...
euphrates85
Votes: 0
Answers: 0
python comparing values of previous rows with current row
I have a data frame like this:
| | Date | Open | High | Low | Close_DAILY | SMA200 | 4H | 1H | BUY |
|-----+---------------------+---------+---------+-----...
Mehrshad
Votes: 0
Answers: 1