fix: remove ARKC and ARKY

This commit is contained in:
Elijah McMorris 2025-03-20 11:59:34 -07:00
parent 051d18494b
commit 723e649568
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8

View file

@ -69,7 +69,7 @@ async fn spawn_ark_plan(ticker: Ticker) -> Result<(), Error> {
async fn ark_etf() {
let futures = Ticker::iter()
.filter(|&x| x != Ticker::ARKVX)
.filter(|&x| x != Ticker::ARKVX && x != Ticker::ARKC && x != Ticker::ARKY)
.map(spawn_ark_plan)
.collect::<Vec<_>>();