Skip to content

Instantly share code, notes, and snippets.

@miguelusque
Created May 30, 2019 17:37
Show Gist options
  • Save miguelusque/e68f69de2b0e5d91a07dfee02c3ad2c7 to your computer and use it in GitHub Desktop.
Save miguelusque/e68f69de2b0e5d91a07dfee02c3ad2c7 to your computer and use it in GitHub Desktop.
DataFrame-Flow yaml graph file snippet
- id: node_csvdata
type: CsvStockLoader
conf:
path: /data/stock_price_hist.csv.gz
inputs: []
- id: node_sort
type: SortNode
conf:
keys:
- asset
- datetime
inputs:
- node_csvdata
- id: node_addReturn
type: ReturnFeatureNode
conf: {}
inputs:
- node_sort
- id: node_addIndicator
type: AssetIndicatorNode
conf: {}
inputs:
- node_addReturn
- id: node_volumeMean
type: AverageNode
conf:
column: volume
inputs:
- node_addIndicator
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment