9c39a743d0
Build cBots in C# and compile them to .algo entirely on Linux via the official cTrader.Automate NuGet package + 'dotnet build' — no Windows and no cTrader desktop app. Run/backtest headless through Spotware's official cTrader console Docker image. Includes: - src/SampleCBot: example SMA-crossover cBot (SDK-style net6.0 class library) - scripts/install-dotnet.sh: root-free local .NET SDK install (~/.dotnet) - scripts/build.sh: dotnet build -> dist/<ProjectName>.algo, with a workaround for cTrader.Automate naming the .algo after the project's parent folder - scripts/run-console.sh: wrapper over ghcr.io/spotware/ctrader-console - docs/research-findings.md: sourced research; .algo verified as a proprietary 'algo'-magic container (not a ZIP); build verified end to end on Linux
14 lines
103 B
Plaintext
14 lines
103 B
Plaintext
# .NET build output
|
|
bin/
|
|
obj/
|
|
dist/
|
|
|
|
# IDE
|
|
.vs/
|
|
.vscode/
|
|
.idea/
|
|
*.user
|
|
|
|
# Local tool installs
|
|
.dotnet/
|