How to backtest with my own non-market datasets?
I looked at this article about backtesting with custom datasets, which ...
I looked at this article about backtesting with custom datasets, which ...
Hey everyone! I was running a backtest for AAPL, and noticed the market price suddenly dropped by over 90%. I think this happened because of a stock split. Does anyone know how I can backtest using adjusted pric ...
When I restart the algorithm, will the variables and its stored values in previous script be deleted or not? If the variable won't be deleted, can the system handle new variables I added under " __init__() "? ...
Hello team, I am trying to implement a stop loss in my strategy. I’m not quite sure how to do it. Can someone provide more guidance? ...
Hello, I have a confuse with difference between close price data in getHistoricalBar function and close price data in market data. I just tried to make a code to get RSI. But there was a quite big dif ...
In backtesting, it seems economic data stream is only available in tick environment. Is it possible to use econ data for other time intervals? ...
I was testing my strategy for the algo challenge, but I saw for one moment the WTIUSD has data missing in 2022-01-17 while it should not. Is this a bug from market data feed? ...
There is only one instrument used In the moving average programming example. May I know if there is any method that can perform the same action but subscribes to more than one instrument? For example, ...
Hello, I want to ask about the function of getHistoricalBar. For example in backtesting, I want to get the historical 2min bar data of certain instrument and calculate some indicato ...
この例は技術文書で見ました。 「isSync」が何に使われるのか説明できる人はいますか? def = 'USDJPY' ...
Hey, I followed this post to upload my data ( https://algogene.com/community/post/26 ). How can I query my custom instrument ...
Following this post , I have trained a model using the online Juypter Notebook. My question is how can I dep ...
Hey, I have a trading strategy which trade on a basket of many stocks and rebalance weekly. The current system needs to manually choose the stocks one by one. It is too time consuming and not ...
I am able to place order and got this error " Invalid order is rejected due to insufficient capital " Here is my code. Please help! ...
Hello community! According to REST API Doc , I know I can query historical OHLC data for pla ...
Hi, I am a participant of the CASH Algo Trading competition. I have a question as title. I read this article Underst ...
Have anyone successfully uploaded their stock dataset and do backtesting? I cannot find the .csv file that I have uploaded, in the "backtest" script. Thank you. ...
Hi Algogene team, I backtested with the platform a few months. I really like your event driven algo system design which is feasible to extend to other non market datasets. Just won ...
Working with text files is a common task in programming, and Python makes it incredibly easy. Whether you're logging data, manipulating configurations, or analyzing datasets, leveraging Python’s po ...
Hi I sent a market order with 1% stop loss condition like below. def = AlgoAPIUtil . OrderObject( ...
I have a strategy using 1-day dataset for backtest. I am wondering how this setup works in the live trading environment. Will my strategy only receive data feed every 24 hours, or is it a re ...
How to access news data feed and how to change the parameter of news data feed function? And does it output a dataframe or a dictionary? ...
Dear AlgoGene support team, I found it took time to run backtest, the work got lost if got disconnected. Is there a way to run the backtest in backend in batch? ...
I find the portfolio optimizer very useful for building portfolio. How can I integrate this tool in my backtest? ...
Hi there, I have developed several simple trading strategies. Following the optimization method from the youtube tutorial ( ...