updated bot_start documentation with working example
This commit is contained in:
parent
a35dc843ea
commit
788d9f5b55
@ -39,7 +39,10 @@ class AwesomeStrategy(IStrategy):
|
|||||||
Called only once after bot instantiation.
|
Called only once after bot instantiation.
|
||||||
:param **kwargs: Ensure to keep this here so updates to this won't break your strategy.
|
:param **kwargs: Ensure to keep this here so updates to this won't break your strategy.
|
||||||
"""
|
"""
|
||||||
self.dp['remote_data'] = requests.get('https://some_remote_source.example.com')
|
if self.config['runmode'].value in ('live', 'dry_run'):
|
||||||
|
# Assign this to the class by using self.*
|
||||||
|
# can then be used by populate_* methods
|
||||||
|
self.remote_data = requests.get('https://some_remote_source.example.com')
|
||||||
|
|
||||||
```
|
```
|
||||||
## Bot loop start
|
## Bot loop start
|
||||||
|
Loading…
Reference in New Issue
Block a user