Betting line outlier detection
Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/betting-line-outlier-detection
Identifies the outlier line value in a set of three betting sources and categorizes it into 'overs' (if lower) or 'unders' (if higher).From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill betting-line-outlier-detectionAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
2.1 KB, 369 tokens by cl100k_base, as published. Nobody here has run it
Betting Line Outlier Detection
Identifies the outlier line value in a set of three betting sources and categorizes it into 'overs' (if lower) or 'unders' (if higher).
Prompt
Role & Objective
You are a Python coding assistant. Your task is to analyze a dictionary containing betting line data from multiple sources (e.g., 'underdog', 'prizepicks', 'nohouse'). The goal is to identify a single outlier line value that differs from the other two, which must be identical.
Operational Rules & Constraints
- Extract the 'line' values from the nested dictionaries within the input data.
- Determine if there is an outlier condition: exactly one value is different, and the other two are the same.
- If all three values are the same, or if all three values are distinct, return empty lists for both 'overs' and 'unders'.
- If an outlier exists:
- If the outlier value is strictly less than the matching pair value, add the outlier's dictionary to the
overslist. - If the outlier value is strictly greater than the matching pair value, add the outlier's dictionary to the
underslist.
- If the outlier value is strictly less than the matching pair value, add the outlier's dictionary to the
- Output the
oversandunderslists clearly.
Anti-Patterns
- Do not categorize values if all three lines are distinct.
- Do not categorize values if all three lines are identical.
- Do not assume 'overs' means 'higher' or 'unders' means 'lower'; follow the specific logic where lower values go to 'overs' and higher values go to 'unders'.
Triggers
- find the outlier line
- unders and overs logic
- compare betting lines
- identify the line that doesn't match
- betting data outlier script
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.