Config#

Setting available via settings.toml or .env

########################################
###          DEFAULT SETTINGS        ###
########################################

# Any of those settings can be changed
# by the user. To overwrite a setting, 
# create a settings.toml or load the 
# settings from .env file or vars.
# As an example, to disable the 
# talkytrend object:
# settings.toml
# [default]
# talkytrend_enabled = false

[default]
# Dynaconf settings verification
VALUE = "On Default"

# Module Enable/Disable
talkytrend_enabled = true
# # Tradingview Parameters
[default.talkytrend.template]
# Signals Enable/Disable
enabled = true
library = "tradingview"
# instrument monitored under trend
# use https://tvdb.brianthe.dev
# to update the list for your instrument
instrument = [
    { id ="EURUSD", exchange='FX_IDC',screener="forex"},
    { id ="GOLD", exchange='TVC',screener="cfd"},
    { id ="SPX", exchange='SP',screener="cfd"},
    { id ="UKOIL", exchange='FX',screener="cfd"},
    { id ="BTCUSD", exchange='BINANCE',screener="crypto"},
]
# Tradingview Prettytable Format
# default format is flat table
# other option is "HTML"
# see https://pypi.org/project/prettytable/
format = ""

# # Tradingview Parameters
# [default.talkytrend.tradingview]
# # Signals Enable/Disable
# enabled = true
# library = "tradingview"
# # instrument monitored under trend
# # use https://tvdb.brianthe.dev
# # to update the list for your instrument
# instrument = [
#     { id ="EURUSD", exchange='FX_IDC',screener="forex"},
#     { id ="GOLD", exchange='TVC',screener="cfd"},
#     { id ="SPX", exchange='SP',screener="cfd"},
#     { id ="UKOIL", exchange='FX',screener="cfd"},
#     { id ="BTCUSD", exchange='BINANCE',screener="crypto"},
# ]
# # Tradingview Prettytable Format
# # default format is flat table
# # other option is "HTML"
# # see https://pypi.org/project/prettytable/
# format = ""

# # yahoo finance ticker reference
# # to retrieve company news or index news
# [default.talkytrend.yfinance]
# enabled = true
# library = "yfinance"
# instrument = "MSFT"


# # Events calendar
# [default.talkytrend.calendar]
# enabled = true
# library = "calendar"
# url = "https://nfs.faireconomy.media/ff_calendar_thisweek.json"


# # Live TV
# [default.talkytrend.livetv]
# enabled = true
# library = "livetv"
# url = "https://bloomberg.com/media-manifest/streams/us.m3u8"

# # RSS Feeds
# [default.talkytrend.feed]
# enabled = true
# library = "feed"
# url = "https://www.dailyfx.com/feeds/market-news"

# # Finnhub news fetcher
# [default.talkytrend.finnhub]
# enabled = false
# library = "finnhub"
# api_key = ""
# api_category = "forex"

# # web scraper
# [default.talkytrend.scraper]
# enabled = false
# library = "scraper"
# url = ""
# url_element = ""


# [default.talkytrend.alphavantage]
# enabled = false
# library = "alphavantage"
# api_key = "DEADBEAFDEADBEAFDEADBEAFDEADBEAF"

# # Finnhub news fetcher
# [default.talkytrend.finnhub]
# enabled = false
# library = "finnhub"
# api_key = "DEADBEAFDEADBEAFDEADBEAFDEADBEAF"
# api_category = "forex"

# [default.talkytrend.forexnewsapi]
# enabled = false
# library = "forexnewsapi"
# url = "https://forexnewsapi.com/api/v1/category?section=general&items=3&page=1&token=DEADBEAFDEADBEAFDEADBEAFDEADBEAF"

# [default.talkytrend.marketaux]
# enabled = false
# library = "marketaux"
# url = "https://api.marketaux.com/v1/news/all?language=en&api_token=DEADBEAFDEADBEAFDEADBEAFDEADBEAF"

# [default.talkytrend.tradermade]
# enabled = false
# library = "tradermade"
# api_key = "DEADBEAFDEADBEAFDEADBEAFDEADBEAF"

# [default.talkytrend.tradingeconomics]
# enabled = false
# library = "tradingeconomics"
# api_key = "DEADBEAFDEADBEAFDEADBEAFDEADBEAF:DEADBEAFDEADBEAFDEADBEAFDEADBEAF"

# [default.talkytrend.twelvedata]
# enabled = false
# library = "twelvedata"
# api_key = "DEADBEAFDEADBEAFDEADBEAFDEADBEAF"

# [default.talkytrend.alpacamarkets]
# enabled = false
# library = "alpacamarkets"


########################################
###     END OF DEFAULT SETTINGS      ###
########################################