This file contains 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
Run ctest -j --build-config Release -VV | |
UpdateCTestConfiguration from :D:/a/pareto/pareto/build/DartConfiguration.tcl | |
Parse Config file:D:/a/pareto/pareto/build/DartConfiguration.tcl | |
UpdateCTestConfiguration from :D:/a/pareto/pareto/build/DartConfiguration.tcl | |
Parse Config file:D:/a/pareto/pareto/build/DartConfiguration.tcl | |
Test project D:/a/pareto/pareto/build | |
Constructing a list of tests | |
Done constructing a list of tests | |
Updating test list for fixtures |
This file contains 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
# /etc/config/network | |
config interface 'loopback' | |
option device 'lo' | |
option proto 'static' | |
option ipaddr '127.0.0.1' | |
option netmask '255.0.0.0' | |
config globals 'globals' | |
option ula_prefix 'fd00:ab:cd::/48' |
This file contains 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
from struct import calcsize | |
import polars as pl | |
def scid_parse_trades(filepath: str) -> pl.DataFrame: | |
"""Sierrachart's SCID format. Must be configured to record single trade ticks.""" | |
intraday_record_struct = np.dtype( | |
[ | |
("timestamp", "<q"), | |
("open", "<f"), | |
("ask_price", "<f"), |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
{ | |
"results": [ | |
{ | |
"id": 1, | |
"type": "exchange", | |
"asset_class": "stocks", | |
"locale": "us", | |
"name": "NYSE American, LLC", | |
"acronym": "AMEX", | |
"mic": "XASE", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
from nautilus_trader.backtest.data.wranglers import BarDataWrangler | |
from nautilus_trader.persistence.external.readers import ParquetReader | |
from nautilus_trader.persistence.catalog import DataCatalog | |
from functools import partial | |
from nautilus_trader.core.datetime import dt_to_unix_nanos | |
from nautilus_trader.model.c_enums.bar_aggregation import BarAggregation | |
from nautilus_trader.model.data.bar import Bar, BarType, BarSpecification | |
from nautilus_trader.model.enums import AggregationSource, PriceType | |
from nautilus_trader.persistence.external.core import process_files, write_objects |
This file contains 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
import streamlit.ReportThread as ReportThread | |
from streamlit.ScriptRequestQueue import RerunData | |
from streamlit.ScriptRunner import RerunException | |
from streamlit.server.Server import Server | |
def rerun(): | |
"""Rerun a Streamlit app from the top!""" | |
widget_states = _get_widget_states() | |
raise RerunException(RerunData(widget_states)) |
This file contains 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
{ | |
"smarts": "[#9,#17,#35,#53]-[*:1]", | |
"limit": 10, | |
"offset": 0, | |
"search_conditions": [ | |
{ | |
"condition": "and_", | |
"filters": [ | |
{ | |
"kind": "location", |
NewerOlder