Lime Signalworks — Classic
Also from Lime Signalworks Signals (Main Site) ↗ Leadership ↗ Enterprise ↗
A Signal Intelligence Agency

Not a Black Box

LIME is a rule-based trading copilot, not a black box. It reads price and volume, calculates a few classic indicators, and turns that into simple guidance you can inspect at every step.

What LIME Is

LIME is a rule-based trading copilot, not a black box. It reads price and volume, calculates a few classic indicators — moving averages, RSI, MACD, ATR — and turns that into simple guidance: OK to hunt longs, caution, or storm. All logic is transparent Pine Script that any competent trader or programmer can read.

What problem LIME solves

Most traders drown in charts and emotions; LIME forces a consistent process. It answers three plain questions: what is the market regime, is this symbol aligned with the current, and if yes, how big and where is the stop/exit.

What makes it different

Multi-timeframe, rule-driven, auditable logs instead of gut feel. Built to be teachable: a one-page blueprint, clear states, and a testing plan investors can inspect.

The LIME Decision Blueprint

This is a high-level blueprint of how LIME thinks, from raw market data to a final trading or advisory decision, written so the full flow fits on one page. Every stage below is explainable and tied to known concepts — this is the “not a black box” heart of the system.

1. Inputs — what LIME reads

For a given symbol (for example, SPY), on each bar LIME pulls price (open, high, low, close), volume, and timeframes: Daily, 4-hour, and 15-minute (extendable to others). From these it computes, on each relevant timeframe: moving averages (20, 50, 200 period), RSI (default 14 period), MACD (12/26/9 standard), average volume (for example, 20-period), and ATR (Average True Range) for stop sizing. Everything downstream uses only these computed values.

2. Trend engine — structural direction

For each timeframe (Daily, 4H, 15m), LIME determines the basic trend: if price > MA20 and MA20 > MA50 and MA50 > MA200, trend = UPTREND. If price < MA20 and MA20 < MA50 and MA50 < MA200, trend = DOWNTREND. Otherwise, trend = NEUTRAL / RANGING. This is stored per timeframe (daily_trend, fourhr_trend, fifteen_trend), so for each timeframe we know: UP, DOWN, or NEUTRAL.

3. Momentum engine — strength and health

For each timeframe, using RSI and MACD: in an uptrend, RSI above 60 signals strong bullish momentum, 50–60 is moderate bullish, 40–50 is weak/warning, and below 40 is momentum disagreement. In a downtrend the bands mirror: below 40 is strong bearish, 40–50 moderate bearish, 50–60 weak/warning, above 60 is disagreement. A divergence check flags when price makes a higher high but RSI makes a lower high (bearish divergence), or price makes a lower low but RSI makes a higher low (bullish divergence). On MACD: MACD above zero, above signal, and a rising histogram means accelerating momentum; above zero, above signal, flat histogram means positive but stable; above zero but below signal means slowing momentum; below zero, below signal, falling histogram means accelerating bearish; below zero but above signal means slowing bearish. The result for each timeframe: trend direction plus momentum quality.

4. Alignment engine — agreement across timeframes

Using the trend outcomes: Daily, 4H, and 15m all UPTREND is perfect bullish alignment. Daily and 4H UPTREND with 15m NEUTRAL is a bullish bias waiting for a trigger. Daily UPTREND, 4H NEUTRAL, 15m UPTREND is tradable but with less conviction. Daily UPTREND against 4H DOWNTREND is a conflict — avoid or be very cautious. Bearish cases follow the same logic in reverse. This stage answers: are we swimming with the current or against it?

5. Setup detector — potential trade zones

On the lowest trading timeframe (for example, 15m), a long setup candidate requires: higher-timeframe context (Daily and/or 4H bullish), price near support (at or slightly above MA20/MA50), and no major bearish divergence on the higher timeframe. A short setup candidate mirrors this using downtrend and resistance. At this stage LIME is not entering yet — it is marking the chart as “watch for entry trigger.”

6. Trigger engine — entry and exit decisions

Within a valid setup zone, a BUY signal fires when all of the following are true: trend alignment passes minimum rules (for example, Daily and 4H bullish); price breaks above a local level (for example, 15m MA20 or a recent swing high); RSI on the 15m is above 50 but below 80 (momentum in favor, not yet exhausted); MACD on the 15m crosses above signal or the histogram turns positive; and volume on the breakout bar exceeds a threshold of the average (for example, 1.1×–1.25× the 20-bar average). A short entry trigger inverts this logic for downtrends. For an open long, LIME exits if any of the following occurs: price closes back below the key moving average used for entry; MACD on the trading timeframe crosses bearish; a predefined stop level is hit (entry minus N × ATR); or a target level (prior resistance or an R-multiple) is reached. At this point LIME has a binary answer per bar: ENTER LONG, ENTER SHORT, HOLD, or EXIT.

7. Confidence scorer — how strong is this signal

For each potential trade, LIME assigns a confidence score from 0–100 based on weighted factors: timeframe alignment score (up to 40%), RSI momentum score (up to 30%), MACD momentum score (up to 25%), volume confirmation score (up to 20%), and risk-reward quality score (up to 10%). These combine into a normalized score: 90–100 is Strong Buy/Strong Sell (full size allowed); 75–89 is Buy/Sell (normal size); 60–74 is Moderate (reduced size); 40–59 is Weak/Caution (tiny size, if any); below 40 is No Trade (signal suppressed).

8. Position sizing engine — how much to risk

Using confidence, ATR, and account size: LIME defines per-trade risk as a percent of equity (for example, 0.5–1%), computes stop distance from entry using structure or ATR, and sets position size as account risk per trade divided by stop distance. Higher confidence allows the full risk allotment; lower confidence scales the position down. This ensures you never blow up on a single trade, and bigger bets are reserved for higher-quality setups.

9. Advisory layer — dashboard output

From the engines above, LIME outputs human-readable guidance: market regime (Bullish/Bearish/Choppy/Ranging), bias (Risk-on/Neutral/Risk-off), and for each symbol — trend state on each timeframe, current signal (Buy/Sell/Hold/Avoid), confidence percentage, suggested stop level and first target, and a recommended position fraction (for example, 0.25, 0.5, or 1.0 of normal size). This is what the user actually sees; the rest runs under the hood.

10. Logging and review

Every executed signal is logged with timestamp, symbol, timeframe context (Daily/4H/15m trends), entry price, stop, target, confidence score and components, and exit reason (target, stop, time, reversal, or manual). This allows later performance analysis by regime, strategy refinement, and independent auditing by an investor.

In short: the blueprint is a pipeline from raw candles → computed indicators → trend and momentum → multi-timeframe agreement → setup → trigger → confidence → position size → plain-English advisory output, with a fully auditable trade log.

Evidence and Testing Path

Evidence and a plan, not faith. Testing runs in layers, each tied to a capital tier and a success bar:

Layer 1 — Signals ($0)

Tests whether the logic behaves: indicators → signals on historical data. Success bar: profit factor ≥ 1.5, no obvious bugs.

Layer 2 — API ($0–$2k)

Tests whether LIME can talk to the broker: signal → order requests, no fills. Success bar: 100% responses, no errors.

Layer 3 — Execution ($2k–$5k)

Tests whether real trades fire correctly: order types, slippage, latency. Success bar: greater than 98% fills, less than 1 second latency, no rejections.

Layer 4 — Profitability ($5k+)

Tests whether the full pipeline makes money, live. Success bar: positive expectancy across regimes.

Backtests (converting an indicator to a strategy on TradingView) prove the logic and catch repainting or coding mistakes at zero cost. The pipe from LIME to the broker is tested in a paper or demo environment before risking a dollar. Micro-trades (single-share tests) prove the broker does exactly what LIME asks, with metrics on fill rate and speed. Only after those pass does the question become: can this produce positive returns, and under what market regimes?

How You Can Check Us

“Trust me” is not the standard here — “here's exactly how you can verify me” is.

Source visibility

LIME is Pine Script; investors may read the code or have an independent developer review it.

Trade logs

Every trade has a line: date/time, symbol, regime, signal, confidence, entry, stop, exit, and reason.

Backtest reports

Strategy tester outputs: equity curves, drawdown, win rate, profit factor, Sharpe ratio, along with symbol and timeframe.

Regime tagging

Performance is broken out by market regime (bull, bear, choppy) so results can be shown as more than just a bull-market toy.

Independent replication

Any TradingView user can load the scripts, run the same backtests, and confirm or challenge the results.

A Grandma-Level Example

This is the “show, don't tell” walkthrough, kept to a few plain steps using SPY: LIME sees SPY in an uptrend on Daily and 4H, while the 15m is pulling back toward support. RSI and MACD say the pullback is normal, not a breakdown. Price bounces from support with strong volume, and LIME fires a BUY with medium-high confidence. The stop is set one ATR below the structure, size is set to 1% risk of the account, and the target is prior resistance. When price slows and MACD turns down, LIME issues an EXIT, and the trade and all context are logged.

LimeHammer: Awareness Before Action

LimeHammer is a simple, rules-based awareness tool for traders — especially beginners — who are ready to stop trading from emotion and start trading from alignment. Its job is not to flood you with signals, but to stand between you and your worst impulses, so you act from one clear plan instead of scattered reactions.

What LimeHammer actually does

It gives you a small rule set for when you are allowed to click buy or sell, and when you must stand down. It locks in fixed risk per trade so one mistake cannot erase a week of good behavior. It defines your lane — specific times, setups, and instruments — so you stop chasing every flashing light on the screen. And it tracks when you break your own rules, showing you those patterns so you can grow from scattered to unified behavior.

The state of mind LimeHammer asks for

Calm body, steady breath, and gathered attention are part of the system, not extras. You learn a short pre-trade routine: sit alert but not tense, breathe steadily, and bring attention back from “what if” and “if only” into this moment. Over time this reduces panic, revenge trades, and “I don't know what came over me” decisions.

A simple day with LimeHammer

Before the open: run a short body-and-breath routine and review today's rules and instruments. During your window: let the assistants watch; you only consider trades inside their pings. At the click: risk is pre-sized; you confirm the setup matches your rules or you stand down. After the session: review which trades matched the plan and which did not, so tomorrow you are a little more unified than today.

Who LimeHammer is for

Traders who have hurt an account once and never want to repeat it. People who know discipline matters but cannot “willpower” their way into it alone. Beginners who want simple, honest rules and a calm guiding presence instead of hype.

Reading the Dashboard, Step by Step

The LIME dashboard is one full-market analysis system, walked in reverse order of the decision-making process:

Step 5 — the final answer

Lime 7 Stop Watcher III™, with its Rank + Vote system showing CAND / AVOID / WATCH / HOLD — the clear action item at the end of the read.

Step 4 — the context

Lime Color Weather™, showing market conditions such as “bull cooling” or “strong bull rising” — understanding whether the environment is favorable.

Step 3 — trend confirmation

Lime 3 Multi-Timeframe Trends, showing whether movements are consistent across timeframes.

Step 2 — the leaders

Lime 4 Rebounder™ and Index Trends, identifying which sectors are strongest.

Step 1 — the watchlist

Lime 12 MaxSize Grid™, showing personalized portfolio status with Breached / Near Stop / Full / Add Small alerts.

Core indicators tell you what and when; supporting indicators provide quality checks and risk management — core indicators carry the melody, supporting indicators add depth and catch what the main tools might miss.