Created
July 19, 2019 08:54
-
-
Save mementum/c31e8e61933fdeea7ad7033431576a15 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyMFIStrategy2(bt.Strategy): | |
def __init__(self): | |
MFI_MultipleInputs(self.data) | |
MFI_MultipleInputs(self.data.high, | |
self.data.low, | |
self.data.close * 5.0, | |
self.data.volume, | |
plotname='MFI Close * 5.0') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment