Created
February 25, 2015 20:05
-
-
Save itsff/9e5b888c30db54b84d70 to your computer and use it in GitHub Desktop.
Sample tconf script
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
# Let's do some copies | |
pub.Symbol = src.Symbol | |
pub.Trade = src.Trade | |
pub.Ask = src.Ask | |
# Blank out pub.Bid | |
blank({}, {pub.Bid}) | |
# Some simple condition | |
if src.Bid > 10 | |
pub.Junk = veh.Bid | |
else | |
pub.Junk = src.Bid | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment