The Config File 💾
SkyDriver uses a TOML file to store its configuration. The file is located at ~/.skydriver/config.toml
.
Note
For windows users, this is
C:/Users/<username>/.skydriver/config.toml
or$HOME/.skydriver/config.toml
. But in recent times~
also works on windows.
What Can You Configure?
Right now, you can tweak how SkyDriver makes its predictions by adjusting the weights of different bazaar indicators.
Prediction Weights
Here’s what your config file looks like:
Warning
All the weights must add up to 1.0! If they don’t, you will end up with weird and unpredictable results.
Default Values
By default, SkyDriver gives equal weight (≈0.143) to each factor. This means no single factor dominates the predictions.
Customizing Your Config
Want to make SkyDriver focus more on certain factors? Here are some example configurations:
Volume-Focused
If you want you recommendations to fill in buy orders and sell the sell orders fast:
Profit-Focused
If you want to focus on pure potential profit and don’t care about speed:
How It Works
- When you first run SkyDriver, it creates a default config file
- if you want to reset your config to the defaults, just delete
config.toml
and SkyDriver will create a new one nex time you run it
- if you want to reset your config to the defaults, just delete
- You can edit this file with any text editor (if you have a code editor like VSCode, you can use intelisense with a provided schema)
- SkyDriver reads this file every time it is run
- If there’s a problem with your config, it falls back to defaults and gives you a warning
Tip
Want to understand what each factor means? Check out the Math page for detailed explanations!
Future Plans
More config options are coming! Some ideas:
- Custom operations on the bazaar data
- Output themes
Note
Got ideas for what else should be configurable? Open an issue on GitHub!