Algo Trading: REST API & Python Wrapper
Tick Data, Historical Data, Real-Time Data, Backtesting, Orders
Dr. Yves J. Hilpisch | The Python Quants GmbH
Online, 04. April 2018
##' Modifies 'data' by adding new values supplied in newDataFileName | |
##' | |
##' newDataFileName is expected to have columns | |
##' c(lookupVariable,lookupValue,newVariable,newValue,source) | |
##' | |
##' Within the column 'newVariable', replace values that | |
##' match 'lookupValue' within column 'lookupVariable' with the value | |
##' newValue'. If 'lookupVariable' is NA, then replace *all* elements | |
##' of 'newVariable' with the value 'newValue'. | |
##' |