add atomic vs stat strategies

This commit is contained in:
mvonsteinkirch 2023-02-15 10:19:48 -08:00
parent 274675ec20
commit ebe28def76
14 changed files with 15 additions and 7 deletions

View file

@ -0,0 +1,31 @@
## arbitrage algorithms (tx-ordering based)
<br>
### tl; dr
<br>
* these algorithms are represented by multi-edged graph data structures where nodes represent coins and edges represents rates.
* to find an arb opportunity, find a closed loop of edges for which the product of weights in the edges > 1.
<br>
### in this
<br>
* [belmman-ford](bellmann_ford)
* [ford-fulkerson](ford_fulkerson)
<br>
---
### resources
<br>
* [all is fair in arb, by ddmckinnon](https://www.ddmckinnon.com/2022/11/27/all-is-fair-in-arb-and-mev-on-avalanche-c-chain/)
* [on classifying complex networks, by dr. m. von steinkirch](https://github.com/go-outside-labs/ml-graph-network-analyser/blob/master/final_report.pdf)

View file

@ -0,0 +1,14 @@
## bellmann ford algorithm
<br>
### tl; dr
<br>
<br>
---
### resources

View file

@ -0,0 +1,13 @@
## ford fulkerson ford algorithm
<br>
### tl; dr
<br>
<br>
---
### resources