Prepares and delivers tailored Hedge Edge product demonstrations for prop-firm traders. Builds custom demo scripts based on the lead's account profile, executes live walkthroughs of the Electron app and MT5 EA, handles objections in real time, and captures demo outcomes for pipeline progression.
Deliver high-conversion product demonstrations that show each prospect exactly how Hedge Edge solves their specific multi-account hedging problem. Every demo is customised to the lead's prop-firm portfolio (number of accounts, firms used, current hedging pain) and ends with a clear next step either a tier recommendation with checkout link or a closing call booking.
`yaml demo_request: type: enum[prepare, live_script, post_demo, async_demo, upsell_walkthrough] required: true
lead_context: lead_id: string lead_name: string email: string discord_handle: string | null prop_firms: list[string] # e.g. ["FTMO", "The5%ers"] account_count: integer # e.g. 5 account_sizes: list[string] | null # e.g. ["200K", "200K", "100K", "100K", "50K"] total_notional: float | null # e.g. 750000 current_hedging_method: string # "manual", "none", "copy-trade" trading_pairs: list[string] # e.g. ["EURUSD", "GBPJPY", "XAUUSD"] platform: enum[MT5, MT4, cTrader] current_tier: enum[free, starter, pro, hedger] | null # for upsell demos pain_points: list[string] | null # captured from discovery call objections_raised: list[string] | null # from prior interactions broker_accounts: list[string] | null # Vantage, BlackBull, other
demo_schedule: datetime: datetime zoom_link: string duration_minutes: integer # 15 or 30 `
Pull lead context from Google Sheets CRM and Notion deal card.
Build the demo scenario matching the lead's exact profile:
Prepare the demo environment:
Build the talk track with these segments:
Prepare objection handlers based on known objections:
oi_ratio = total_risk / annual_hedge_cost
yaml demo_output: type: string lead_id: string demo_scenario: string # prose description of the customised demo talk_track: list[object] # ordered segments with timing, content, and key points roi_calculation: total_risk: float annual_hedge_cost: float roi_ratio: float narrative: string # e.g. "5.8 ROI on capital protection" objection_handlers: list[object] # each with objection, response, supporting_data pre_call_brief: string # saved to Notion post_demo_actions: follow_up_email_sent: boolean follow_up_discord_sent: boolean crm_updated: boolean notion_stage_updated: boolean next_step: string checkout_link: string | null # Creem.io link if ready to close ib_opportunity_flagged: boolean
| Platform | Variable | Operations Used |
|---|---|---|
| Google Sheets | GOOGLE_SHEETS_API_KEY | Read lead data, log demo outcome |
| Notion | NOTION_API_KEY | Read deal card, save pre-call brief, update stage |
| Supabase | SUPABASE_URL, SUPABASE_KEY | Pull usage data for upsell demos, verify account status |
| Creem.io | CREEM_API_KEY | Generate tier-specific checkout link for post-demo follow-up |
| Zoom | ZOOM_API_KEY | Access recording after call for review |
| Discord Bot | DISCORD_BOT_TOKEN | Send post-demo follow-up DM |
| local automation scripts (Railway) | RAILWAY_TOKEN | Trigger follow-up sequences, async demo tracking |
Generate a pre-call brief and save to Notion deal card.