data_url <- function(is_live = Sys.getenv("LEMON_MARKETS_IS_LIVE", FALSE)) {
out <- "paper-data"
if (is_live) {
out <- "data"
}
out
}
trading_url <- function(is_live = Sys.getenv("LEMON_MARKETS_IS_LIVE", FALSE)) {
out <- "paper-trading"
if (is_live) {
out <- "trading"
}
out
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.