IMPORTANT: Change to run_daily_price_updates in version 1.48 #956
robcarver17
announced in
Announcements
Replies: 2 comments 8 replies
-
Thanks for updating this, just curious, are you running systems before updating multiple adjusted prices? Wouldn't that be delaying the system by a day? |
Beta Was this translation helpful? Give feedback.
3 replies
-
When using the interactive_controls tool, shouldn't one be able to change the status (Go/Stop) of the new processes, run_daily_fx_and_contract_updates and run_daily_update_multiple_adjusted_prices ? Don't see them under option 4 then 40
|
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For reasons discussed in #913 I have broken out two new run_ processes, so there are now three:
run_daily_prices
: just does historical contract pricesrun_daily_fx_and_contract_updates
: does update_sampled_contracts and update_fx_pricesrun_daily_update_multiple_adjusted_prices
: does what it says on the tin.The effect of this is that you will need to add lines to your crontab to run the two relevant new processes, example here. I recommend running
run_daily_fx_and_contract_updates
early in the morning as it is not time sensitive, and runningrun_daily_update_multiple_adjusted_prices
in late evening.EDIT: Under linux, don't forget to set execution permissions on the two new script files
chmod +x run_daily_update_multiple_adjusted_prices
andrun_daily_fx_and_contract_updates
', or the crontab won't run them.You may also want to modify your
control_config.yaml
; I have added defaults here. Here is an excerpt from mine, with notes:I'd recommend not pulling this change for a couple of days until I've tested it.
Beta Was this translation helpful? Give feedback.
All reactions