Initial commit

This commit is contained in:
2026-07-17 22:35:11 +02:00
parent 3121a7d818
commit 1ff0efb557
31 changed files with 895046 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
package strategies
// ────────────────────────────────────────────────────────────────────────────── //
// HIDDEN_SINGLE STRUCTURE //
// ────────────────────────────────────────────────────────────────────────────── //
type HiddenSingle struct {
Base
}
// ────────────────────────────────────────────────────────────────────────────── //
// HIDDEN_PAIR STRUCTURE //
// ────────────────────────────────────────────────────────────────────────────── //
type HiddenPair struct {
Base
}
// ────────────────────────────────────────────────────────────────────────────── //
// HIDDEN_TRIPLE STRUCTURE //
// ────────────────────────────────────────────────────────────────────────────── //
type HiddenTriple struct {
Base
}