Start now →

AKAM-QQE Deceleration & EMA Filter Strategy

By Kryptera · Published May 3, 2026 · 1 min read · Source: Trading Tag
Trading
AKAM-QQE Deceleration & EMA Filter Strategy

Member-only story

AKAM-QQE Deceleration & EMA Filter Strategy

When Momentum Sleeps, the Trade Wakes Up

KrypteraKryptera7 min read·Just now

--

Press enter or click to view image in full size

Disclaimer: The backtest results in this article are based solely on historical data and do not guarantee future performance. Anyone wishing to use this trading system should conduct their own research and testing before applying it.

The Setup

Akamai Technologies (AKAM) is not a glamorous ticker. It doesn’t trend on Reddit. It doesn’t make headlines every week. What it does do is move — slowly, cyclically, with enough structure for a systematic strategy to find its footing. That’s exactly what we tested.

import pandas as pd
import numpy as np
import yfinance as yf
import vectorbt as vbt

# -------------------------
# Download Data
# -------------------------

symbol = "AKAM"
start_date = "2000-01-01"
end_date = "2026-01-01"
interval = "1d"

df = yf.download(symbol, start=start_date, end=end_date, interval=interval, multi_level_index=False)
df.to_csv("AKAM_clean.csv", index=False)
df

The strategy is built on 2 ideas.

QQE_FACTOR = 4.236
QQE_PERIOD = 14
QQE_SHIFT = 5
QQE_SMOOTH = 5

def calculate_qqe(df…
This article was originally published on Trading Tag and is republished here under RSS syndication for informational purposes. All rights and intellectual property remain with the original author. If you are the author and wish to have this article removed, please contact us at [email protected].

NexaPay — Accept Card Payments, Receive Crypto

No KYC · Instant Settlement · Visa, Mastercard, Apple Pay, Google Pay

Get Started →